Custom
{
"functions": [
{
"name": "send-order-confirmation",
"operation": "/path/to/my/script/order.ts#myFunction",
"type": "custom"
}
]
}[{
"states": [{
"name": "handle-order",
"type": "operation",
"actions": [
{
"name": "send-order-confirmation",
"functionRef": {
"refName": "send-order-confirmation",
"arguments": {
"order": "${ .order }"
}
}
}
],
"transition": "emailCustomer"
}]
}]Last updated