Assign ticket
documentedAssign a ticket to a user or group (second parameter contains user_id or group_id).
POST /tickets/{ticket_id}/assignTicketsno 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://{{SUPPORTBEE_SUBDOMAIN}}.supportbee.com/api/v1/tickets/{{$ticket_id}}/assign" \
-X POST \
-H "Authorization: Bearer {{SUPPORTBEE_API_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"assignee_type": "user", "assignee_id": {{$assignee_id}}}'