Sign in

Add tag to ticket

documented

Add a tag to a ticket (by tag ID or label).

POST /api/v2/tickets/{id}/add_tagTicketsno 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://app.mojohelpdesk.com/api/v2/tickets/{{$ticket_id}}/add_tag?access_key={{MOJOHELPDESK_API_KEY}}" \
  -X POST \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"tag_id": {{$tag_id}}, "tag_label": "{{$tag_label}}"}'