flow
{% json my_payload %}
{
"customer_id": "{{ customer.id }}",
"order_total": {{ order.total_price }},
"action": "send_reward"
}
{% endjson %}
{% flow payload: my_payload as result %}
{% if result.ok %}
{% log "Flow triggered successfully" %}
{% else %}
{% log "Failed to trigger flow" %}
{% endif %}Syntax
{% flow payload: payload_variable as result_variable %}Parameters
Parameter
Required
Description
Result Object
Property
Type
Description
Flow Receives
Field
Description
Use Cases
Notes
Last updated