Create Reply Thread
documentedCreate a reply thread in a conversation.
POST /v2/conversations/{conversationId}/replyConversationsno 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/{{$conversation_id}}/reply" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"customer": {"id": {{$customer_id}}}, "text": "{{$text}}", "attachments": [ {"fileName": "{{$attachment_filename}}", "mimeType": "{{$attachment_mime}}", "data": "{{$attachment_data}}"} ] }'