Sign in

Send Message

documented

Send a message within a conversation.

POST /conversations/{conversationId}/messagesConversationsno implementation yet0 runs
No 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/{{$conversation_id}}/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": "{{$channel_id}}", \
  "source": { \
    "name": "{{$source_name}}", \
    "version": "{{$source_version}}" \
  } \
}'