Sign in

Convert conversation to ticket

documented

Convert a conversation into a ticket.

POST /conversations/{conversation_id}/convertConversationsno 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://api.intercom.io/conversations/{{$conversation_id}}/convert" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "Intercom-Version: 2.10" \
  -d '{"ticket_type_id": "{{$ticket_type_id}}", "attributes": {"_default_title_": "{{$default_title}}", "_default_description_": "{{$default_description}}", "category": "{{$category}}", "ticket_attributes": {"_custom_field_1": "{{$custom_field_1}}"}}}'
Convert conversation to ticket · Intercom · OpenIntegrations