logo
TicketsBulk ticket actions

Bulk ticket actions

Mirrors in-app bulk actions: update_status, assign, add_tags, remove_tags, move_inbox. Bulk delete is not available on the public API. Webhooks fire per affected ticket where applicable (ticket.updated, ticket.status_changed, ticket.closed, ticket.assigned).

curl -X POST "/api/v1/tickets/bulk" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN (API key (ixk_...))"
{
  "data": {
    "operation": "example_string",
    "updated": 42,
    "tags_added": 42,
    "tags_removed": 42
  }
}
POST
/tickets/bulk
POST
Bearer Token (API key (ixk_...))
Bearer Tokenstring
Required

API key from Settings → API. Pass as Authorization: Bearer <key>

API key from Settings → API. Pass as Authorization: Bearer <key>
Content-Typestring
Required

The media type of the request body

Options: application/json
No request body parameters defined
Request Preview
Response

Response will appear here after sending the request

Authentication

header
Authorizationstring
Required

Bearer token (API key (ixk_...)). API key from Settings → API. Pass as Authorization: Bearer <key>

Body

application/json
datastring
Required

Raw application/json data

Responses

dataobject