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!"
     }
    ]
   }
  }
 }'
Â