Hey folks,
Trying to send a structured quick reply card via the Open Messaging API, but the buttons are just rendering as plain text links in the widget. The payload looks right per the docs, but no luck.
POST /api/v2/conversations/webmessaging/messages
{
"to": { "id": "convId" },
"text": "Pick an option:",
"cards": [{
"title": "Help",
"actions": [{ "type": "button", "label": "Yes" }]
}]
}
Getting a 200 OK, so the server accepts it. Is the actions schema different for quick replies?