Skip to main content

How to send a message to the ManyChat API for WhatsApp.

After 24 hours.

I know it needs to be a Marketing or Utility template.

But how do I send it via the API?

I didn't find this in the documentation.

 

sample text message.

But I would like msg template after 24 hours.

curl -X POST 'https://api.manychat.com/fb/sending/sendContent' \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer TOKEN' \
  -H 'Content-Type: application/json' \
  -d '{
    "subscriber_id": 111111111111,
    "data": {
      "version": "v2",
      "content": {
        "type": "whatsapp",
        "messages":
          {
            "type": "text",
            "text": "Hello World!"
          }
        ]
      }
    }
  }'
 

@alessandroht you can't send content and send Message Templates.

Use the sendFlow option, and in the flow send the message template you need to send.

Hope this helps!


Reply