Skip to main content
Solved

How Send via api msg model whatsapp after 24 hours?

  • May 15, 2025
  • 1 reply
  • 43 views

alessandroht

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

Best answer by Gustavo Boregio

@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!

1 reply

Gustavo Boregio
Forum|alt.badge.img+6
  • Manychat Community Moderator
  • 2821 replies
  • Answer
  • May 15, 2025

@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!