curl --request POST \
--url https://api.example.com/api/public/whatsapp/message/note/send \
--header 'Content-Type: application/json' \
--header 'x-api-key: <x-api-key>' \
--data '
{
"meta_data": {},
"to_phone": "<string>",
"from_phone": "<string>",
"note": "<string>"
}
'Send a note message to a given phone number.
curl --request POST \
--url https://api.example.com/api/public/whatsapp/message/note/send \
--header 'Content-Type: application/json' \
--header 'x-api-key: <x-api-key>' \
--data '
{
"meta_data": {},
"to_phone": "<string>",
"from_phone": "<string>",
"note": "<string>"
}
'API key needed to authorize the request
The payload to send with the template message
Message sent successfully.
Was this page helpful?