v1

latestOpenAPI 3.1.02026-07-224239180.9 KB
Task Queue

List task queues

Returns paginated active scheduling-task queues. IDs and a name filter can be combined to narrow results, and deleted queues are excluded. Use the cursor to continue the same filtered result set.

get/v1/task-queues

Query parameters

cursorstring

Opaque pagination cursor from the previous page's pagination.next_cursor, bound to the same query filters.

Opaque pagination cursor from the previous page's pagination.next_cursor, bound to the same query filters.

limitinteger

Page size. Must be between 1 and 100; defaults to 25.

Page size. Must be between 1 and 100; defaults to 25.

idsstring[] nullable

Comma-separated list of IDs; maximum 100 values.

Comma-separated list of IDs; maximum 100 values.

[
  "que_a1b2c3d4e5f64789a1b2c3d4e5f64789"
]
namestring

Case-insensitive substring match on the queue name; combines with ids using AND.

Case-insensitive substring match on the queue name; combines with ids using AND.

Response

Success

Example response

{
  "data": [
    {
      "id": "que_a1b2c3d4e5f64789a1b2c3d4e5f64789"
    }
  ]
}