Operations (sample payloads)

Main operations

Simple Branch

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

{
    "value": "apple",
    "branches": [
        \{
            "value": "apple",
            "label": "Fruit Branch"
        \},
        \{
            "value": "carrot",
            "label": "Vegetable Branch"
        \},
        \{
            "value": "chicken",
            "label": "Meat Branch"
        \}
    ]
}

Sample Output

\{
    "branch_name": "Branch 1",
    "branch_value": "apple",
    "branch_label": "Fruit Branch"
\}

Was this page helpful?