curl --request GET \
--url https://control-plane.kubiya.ai/api/v1/workers \
--header 'Authorization: Bearer <token>'[
{
"task_queue": "<string>",
"organization_id": "<string>",
"runner_name": "<string>",
"workers": [
{
"identity": "<string>",
"last_access_time": "<string>",
"rate_per_second": 123
}
],
"worker_count": 123,
"approximate_backlog_count": 123
}
]List registered Temporal workers for the organization.
This queries Temporal to get all task queues for the organization and returns information about registered workers on each queue.
Task queue naming convention: .
curl --request GET \
--url https://control-plane.kubiya.ai/api/v1/workers \
--header 'Authorization: Bearer <token>'[
{
"task_queue": "<string>",
"organization_id": "<string>",
"runner_name": "<string>",
"workers": [
{
"identity": "<string>",
"last_access_time": "<string>",
"rate_per_second": 123
}
],
"worker_count": 123,
"approximate_backlog_count": 123
}
]Enter your Kubiya API token (format: Bearer
Was this page helpful?