Whatsapp Message

This API allows you to send a WhatsApp message to a specified recipient.

Send Whatsapp Message

POST https://api.getspendo.com/gateway/api/v1/send/whatsapp

Headers

Request Body

{
  "success": true,
  "message": "Message sent",
  "code": 0,
  "data": null
}

Good to know: You can use our API Method block to fully test all the API method.

Take a look at how you might call this method using our official libraries, or via curl:

curl --location --request POST 'https://api.getspendo.com/gateway/api/v1/send/whatsapp' \
--header 'apiKey: test_api_key' \
--header 'Content-Type: application/json' \
--data-raw '{
  "message": "string",
  "phoneNumber": "string"
}'

Last updated