Send Message in Conversation
documentedSend a message within an existing conversation.
POST /conversations/{conversationId}/messagesConversationsno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://conversations.messagebird.com/v1/conversations/{{$conversationId}}/messages" \
-X POST \
-H "Authorization: AccessKey {{MESSAGEBIRD_API_KEY}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"type": "text", "content": {"text": "{{$text}}"}, "channelId": "{{$channelId}}", "reportUrl": "{{$reportUrl}}", "eventType": "{{$eventType}}", "tag": "{{$tag}}", "trackId": "{{$trackId}}", "ttl": "{{$ttl}}", "replyTo": {"id": "{{$replyToId}}"}}'