curl --request GET \
--url https://control-plane.kubiya.ai/api/v1/worker-queues \
--header 'Authorization: Bearer <token>'[
{
"id": "<string>",
"organization_id": "<string>",
"environment_id": "<string>",
"name": "<string>",
"display_name": "<string>",
"description": "<string>",
"status": "<string>",
"max_workers": 123,
"heartbeat_interval": 123,
"tags": [
"<string>"
],
"settings": {},
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"created_by": "<string>",
"task_queue_name": "<string>",
"active_workers": 0
}
]List all worker queues across all environments for the organization (excluding ephemeral queues)
curl --request GET \
--url https://control-plane.kubiya.ai/api/v1/worker-queues \
--header 'Authorization: Bearer <token>'[
{
"id": "<string>",
"organization_id": "<string>",
"environment_id": "<string>",
"name": "<string>",
"display_name": "<string>",
"description": "<string>",
"status": "<string>",
"max_workers": 123,
"heartbeat_interval": 123,
"tags": [
"<string>"
],
"settings": {},
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"created_by": "<string>",
"task_queue_name": "<string>",
"active_workers": 0
}
]Enter your Kubiya API token (format: Bearer
Successful Response
Was this page helpful?