

+ charactertextbody key containing the string text message you want to send{
"messaging_product": "whatsapp",
"to": "912233223322",
"type": "text",
"text": {
"body": "This is a text message"
}
}+ characterimagelink key containing a publicly accessible url for the image you want to sent{
"messaging_product": "whatsapp",
"to": "912233223322",
"type": "image",
"image": {
"link": "https://static-data.chakrahq.com/documentation-assets/whatsapp/api-docs/copy-plugin-id.png"
}
}+ characterinteractive{
"messaging_product": "whatsapp",
"to": "912233223322",
"type": "interactive",
"interactive": {
"type": "list",
"header": {
"type": "text",
"text": "Quick Options"
},
"body": {
"text": "Please select one of the options below"
},
"footer": {
"text": "ChakraHQ"
},
"action": {
"button": "Options",
"sections": [
{
"title": "All options",
"rows": [
{
"id": "check_order_status",
"title": "Check Order Status",
"description": "Select this option to check order status"
},
{
"id": "return_order",
"title": "Return Order",
"description": "Select this option to return an order"
}
]
}
]
}
}
}curl --location -g --request POST 'https://api.chakrahq.com/v1/ext/plugin/whatsapp/d83e1d23-50b8-4d87-8f92-842a0ac516f6/api/v24.0/{{$number.int(min=1)}}/messages' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"messaging_product": "whatsapp",
"to": "912233223322",
"type": "text",
"text": {
"body": "This is a text message"
}
}'{
"_data": {
"whatsappMessageId": "wamid.HBgMOTE5OTAxMjU4NDMzFQIAERgSREM5NDZGMjRFNzc1QUFDOEExAA=="
}
}