Update ticket custom fields
documentedUpdate values of ticket custom fields.
POST /api/1.1/json/ticket/{ticket_number}/update_custom_fields/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://{{$account_domain}}/api/1.1/json/ticket/{{$ticket_number}}/update_custom_fields/" \
-X POST \
-u "{{HAPPYFOX_API_KEY}}:{{HAPPYFOX_SECRET}}" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"staff_id": {{$staff_id}}, "t-cf-{{$cf3_id}}": [{{$cf3_value1}}, {{$cf3_value2}}], "t-cf-{{$cf1_id}}": "{{$cf1_value}}", "t-cf-{{$cf4_id}}": "{{$cf4_value}}"}'