queues
List all queues
List all queues in your environment with pagination support.
get/api/v1/queues
Query parameters
pageinteger
Page number of the queue listing (1-based)
perPageinteger
Number of queues per page
Response
Successful request
Example response
{
"data": [
{
"id": "queue_1234",
"name": "my-task-id",
"type": "task",
"running": 5,
"queued": 10,
"concurrencyLimit": 10,
"concurrency": {
"current": 10,
"base": 10
}
}
],
"pagination": {
"currentPage": 1,
"totalPages": 5,
"count": 50
}
}