curl --request GET \
--url https://control-plane.kubiya.ai/api/v1/task-queues \
--header 'Authorization: Bearer <token>'[
{
"id": "<string>",
"organization_id": "<string>",
"name": "<string>",
"display_name": "<string>",
"description": "<string>",
"tags": [
"<string>"
],
"settings": {},
"status": "<string>",
"created_at": "<string>",
"updated_at": "<string>",
"created_by": "<string>",
"priority": 123,
"policy_ids": [],
"worker_token": "<string>",
"provisioning_workflow_id": "<string>",
"provisioned_at": "<string>",
"error_message": "<string>",
"temporal_namespace_id": "<string>",
"active_workers": 0,
"idle_workers": 0,
"busy_workers": 0
}
]List all task queues in the organization
curl --request GET \
--url https://control-plane.kubiya.ai/api/v1/task-queues \
--header 'Authorization: Bearer <token>'[
{
"id": "<string>",
"organization_id": "<string>",
"name": "<string>",
"display_name": "<string>",
"description": "<string>",
"tags": [
"<string>"
],
"settings": {},
"status": "<string>",
"created_at": "<string>",
"updated_at": "<string>",
"created_by": "<string>",
"priority": 123,
"policy_ids": [],
"worker_token": "<string>",
"provisioning_workflow_id": "<string>",
"provisioned_at": "<string>",
"error_message": "<string>",
"temporal_namespace_id": "<string>",
"active_workers": 0,
"idle_workers": 0,
"busy_workers": 0
}
]Enter your Kubiya API token (format: Bearer
Successful Response
Was this page helpful?