Random Split Format

The random split activity allows a marketer to create a multiple outcomes that contacts are randomly siphoned within a journey. This activity type can’t be used in a custom activity.

Helpful Hints 

  • The percentages must add up to 100 and are represented as only positive integers greater than zero and less than 100.
  • The outcome of this decision affects goal statistics.

Journey Specification Format 

The activity must be formatted as specified below. The following JSON object is included in the activities array of a journey, as defined in the Journey Specification.

Sample Request 

1{
2    "key":"Random-Split-1",
3    "type":"randomSplit",
4    "outcomes":[
5        {
6            "next":"send-sms",
7            "arguments":{
8                     "percentage":90
9            }
10        },
11        {
12            "next":null,
13            "arguments":{
14                     "percentage":10
15            }
16        }
17    ]
18}

Sample Response 

1{
2    "id": "<object GUID>",
3    "key":"Random-Split-1",
4    "type":"randomSplit",
5    "outcomes":[
6        {
7            "next":"send-sms",
8            "arguments":{
9                     "percentage":90
10            }
11        },
12        {
13            "next":null,
14            "arguments":{
15                     "percentage":10
16            }
17        }
18    ]
19}

Related Items 

Journey Specification