Trying to push a canned response to an active chat via the Conversations API but hitting a 409 Conflict. The interaction is definitely active and the user ID matches, but the API keeps rejecting the message send. Here’s the payload I’m tossing at POST /api/v2/conversations/webchat/messages.
{
"from": {"id": "bot-id-here"},
"to": [{"id": "user-id-here"}],
"type": "text",
"text": "Here is the info you requested."
}
Docs say this should work for sending text during an interaction. What am I missing?