POST
/
api
/
transactionals
/
whatsapp
/
send
curl --request POST \
--url https://app.minimo.it/api/transactionals/whatsapp/send \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"recipient": "393471234567",
"type": "template",
"template": {
"name": "order_confirmation",
"components": [
{
"type": "BODY",
"parameters": [
{
"type": "text",
"text": "John"
},
{
"type": "text",
"text": "ORD-12345"
}
]
}
]
}
}'
{
  "status": 200
}

⚠️ This endpoint is deprecated and will be removed in a future release. Please use the new one under the Templates section.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Response

200
application/json

Message sent successfully

The response is of type object.