Update ticket
documentedUpdate an existing ticket.
PUT /api/v2/tickets/{id}Ticketsno 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://app.mojohelpdesk.com/api/v2/tickets/{{$id}}?access_key={{MOJOHELPDESK_API_KEY}}" \
-X PUT \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"title": "{{$title}}", "description": "{{$description}}", "ticket_queue_id": {{$ticket_queue_id}}, "priority_id": {{$priority_id}}, "status_id": {{$status_id}}, "ticket_type_id": {{$ticket_type_id}}, "assigned_to_id": {{$assigned_to_id}}, "ticket_form_id": {{$ticket_form_id}}, "user_id": {{$user_id}}, "cc": "{{$cc}}", "asset_tag": "{{$asset_tag}}", "asset_id": {{$asset_id}}, "due_on": "{{$due_on}}", "scheduled_on": "{{$scheduled_on}}", "custom_field_<CUSTOM_FIELD_SYSTEM_KEY>": "{{$custom_field_value}}" }'