SCENARIO:
- You have a sequence with an ID of
123
. - The sequence exposes one numberic variable with a label of
My number
(capitalization is important). - You want to execute the sequence and pass a value of
456
to the variable.
{
"kind": "rpc_request",
"args": {
"label": "label123",
"priority": 500
},
"body": [
{
"kind": "execute",
"args": { "sequence_id": 123 },
"body": [
{
"kind": "parameter_application",
"args": {
"label": "My number",
"data_value": {
"kind": "numeric",
"args": {
"number": 456
}
}
}
}
]
}
]
}