WAWhatsApp Toolkitnew suite
WhatsApp Cloud API Message Builder
Build official WhatsApp Cloud API JSON payloads for Text, Interactive Buttons, Lists, and Templates.
tool id:whatsapp-builder
Message Parametersv20.0 graph api
json payload
{
"messaging_product": "whatsapp",
"recipient_type": "individual",
"to": "919876543210",
"type": "text",
"text": {
"preview_url": false,
"body": "Hello from devstation! Your verification code is 492019."
}
}curl command
curl -X POST "https://graph.facebook.com/v20.0/109283746501928/messages" \
-H "Authorization: Bearer swift_wa_live_sriram_token" \
-H "Content-Type: application/json" \
-d '{
"messaging_product": "whatsapp",
"recipient_type": "individual",
"to": "919876543210",
"type": "text",
"text": {
"preview_url": false,
"body": "Hello from devstation! Your verification code is 492019."
}
}'