Create Conversation
documentedCreate a new conversation in an inbox with at least one thread.
POST /v2/conversationsConversationsno 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://api.helpscout.net/v2/conversations" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"subject": "{{$subject}}", "customer": {"email": "{{$customer_email}}", "firstName": "{{$customer_firstName}}", "lastName": "{{$customer_lastName}}"}, "mailboxId": {{$mailbox_id}}, "type": "{{$type}}", "status": "{{$status}}", "threads": [ {"type": "customer", "customer": {"email": "{{$customer_email}}"}, "text": "{{$text}}" } ], "tags": ["{{$tag1}}","{{$tag2}}"] }'