Add label to ticket
documentedAdd a label to a ticket.
POST /tickets/{ticket_id}/labelsTicketsno 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://{{$company}}.supportbee.com/tickets/{{$ticket_id}}/labels/{{$label_name}}" \
-X PUT \
-H "Authorization: Bearer {{SUPPORTBEE_API_KEY}}" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"name": "{{$label_name}}"}'