Operations (sample payloads)

Main operations
Copy

Simple Branch
Copy

Define branches which do a simple equality check with a test value

Sample Input

1
{
2
"value": "apple",
3
"branches": [
4
{
5
"value": "apple",
6
"label": "Fruit Branch"
7
},
8
{
9
"value": "carrot",
10
"label": "Vegetable Branch"
11
},
12
{
13
"value": "chicken",
14
"label": "Meat Branch"
15
}
16
]
17
}

Sample Output

1
{
2
"branch_name": "Branch 1",
3
"branch_value": "apple",
4
"branch_label": "Fruit Branch"
5
}