{
"whatsapp_number": "{{whatsapp_number}}",
"type": "TEMPLATE",
"to_whatsapp_number": "{{destination_number}}",
"template": {
"template_name": "test_flow_template",
"components": [
{
"type": "button",
"sub_type": "flow",
"index": 0,
"parameters": [
{
"type": "action",
"action": {
"flow_token": "custom-token" // custom token
}
}
]
}
]
}
}curl --location 'https://api.sudonum.com.com/v2/whatsapp/messages/' \
--header 'Authorization: Token {{AUTH_TOKEN}}' \
--header 'Content-Type: application/json' \
--data '{
"whatsapp_number": "{{whatsapp_number}}",
"type": "TEMPLATE",
"to_whatsapp_number": "{{destination_number}}",
"template": {
"template_name": "test_flow_template",
"components": [
{
"type": "button",
"sub_type": "flow",
"index": 0,
"parameters": [
{
"type": "action",
"action": {
"flow_token": "custom-token" // custom token
}
}
]
}
]
}
}'{}