POST
/
stable
/
open
/
whatsapp
/
send-template
curl --request POST \
  --url https://api.myalice.ai/stable/open/whatsapp/send-template \
  --header 'Content-Type: multipart/form-data' \
  --header 'X-Myalice-Api-Key: <api-key>' \
  --form template_id=102323213 \
  --form channel_id=1022 \
  --form 'customer_phone=+628123456789' \
  --form 'body_vars={
  "1": "John Doe"
}' \
  --form 'button_vars={
  "1": "Home"
}' \
  --form header_type=document \
  --form 'customer_attributes={
  "1": "John Doe"
}'
{
  "success": true,
  "data": {
    "status": "ongoing"
  }
}

Authorizations

X-Myalice-Api-Key
string
header
required

Body

multipart/form-data

WhatsApp Template to send

The body is of type object.

Response

200
application/json

Successful operation

The response is of type object.