Skip to main content
Question

Button sending problem

  • December 7, 2025
  • 1 reply
  • 10 views

Gvb_records

 hi there ı want to make automated message sending workflow with buttons but when try to send body like this it doesnt work how to solve this problem 

body

 

1 reply

Gustavo Boregio
Forum|alt.badge.img+6
  • Manychat Community Moderator
  • December 8, 2025

Your content format is wrong ​@Gvb_records 

Check the documentation here: https://api.manychat.com/swagger#/

And here: https://manychat.github.io/dynamic_block_docs/channels/

And try something like this:

{
"subscriber_id": 0,
"data": {
"version": "v2",
"content": {
"type": "instagram",
"messages": [
{
"type": "text",
"text": "simple text with button",
"buttons": [
{
"type": "url",
"caption": "External link",
"url": "https://manychat.com"
}
]
}
],
"actions": [],
"quick_replies": []
}
}
}

 

Hope this helps!

PS: i didn’t check the code, there may be missing or extra curly brackets there!