Sign in

Start Conversation

documented

Start a new conversation with a contact.

POST /conversations/startConversationsno 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/start" \
  -X POST \
  -H "Authorization: AccessKey {{MESSAGEBIRD_API_KEY}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{
    "to": "{{$to}}", 
    "channelId": "{{$channelId}}", 
    "type": "{{$type}}", 
    "content": {{$content}}, 
    "source": {{$source}}, 
    "reportUrl": "{{$reportUrl}}", 
    "tag": "{{$tag}}", 
    "trackId": "{{$trackId}}", 
    "eventType": "{{$eventType}}", 
    "ttl": "{{$ttl}}", 
    "replyTo": "{{$replyTo}}" 
  }'
Start Conversation · messagebird · OpenIntegrations