Unknown

Get Flags By Ticket Batch

Get all flags for tickets by IDs.

This function is used to get all flags for tickets by there IDs.

POST
/api/v1/flags/batch
ticket_idsTicket Ids

Response Body

curl -X POST "https://loading/api/v1/flags/batch" \
  -H "Content-Type: application/json" \
  -d '{
    "ticket_ids": [
      0
    ]
  }'
null
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}