Sign in

Create Voicemail Ticket

documented

Create a voicemail ticket in Talk.

POST /api/v2/channels/voice/tickets.jsonVoiceno 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://{{$subdomain}}.zendesk.com/api/v2/channels/voice/tickets.json" \
  -X POST \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -d '{"display_to_agent": {{$display_to_agent}}, "ticket": { "via_id": {{$via_id}}, "subject": "{{$subject}}", "comment": { "body": "{{$comment_body}}" }, "priority": "{{$priority}}", "custom_fields": {{$custom_fields}} } }'
Create Voicemail Ticket · Zendesk · OpenIntegrations