How to get all the options for ticket status field through API?

I figured this out.

  1. I used /api/v2/admin/ticket_fields to get the id for the status
  2. With the status id, I used /api/v2/admin/ticket_fields/[status_id] to get the status object
  3. The status object has a choices collection which contained exactly what I needed.
5 Likes