Skip to main content
POST
/
api
/
v1
/
worker-queues
/
{queue_id}
/
start
Start Worker For Queue
curl --request POST \
  --url https://control-plane.kubiya.ai/api/v1/worker-queues/{queue_id}/start \
  --header 'Content-Type: application/json' \
  --data '{}'
{
  "worker_id": "<string>",
  "task_queue_name": "<string>",
  "temporal_namespace": "<string>",
  "temporal_host": "<string>",
  "temporal_api_key": "<string>",
  "organization_id": "<string>",
  "control_plane_url": "<string>",
  "heartbeat_interval": 123,
  "litellm_api_url": "<string>",
  "litellm_api_key": "<string>",
  "queue_name": "<string>",
  "environment_name": "<string>",
  "websocket_enabled": true,
  "websocket_url": "<string>",
  "websocket_features": [
    "<string>"
  ],
  "control_plane_sdk_version": "<string>"
}

Path Parameters

queue_id
string
required

Body

application/json

Worker start request with SDK version and system info

worker_sdk_version
string | null
system_info
object | null

Worker system information

Response

Successful Response

Worker start configuration

worker_id
string
required
task_queue_name
string
required
temporal_namespace
string
required
temporal_host
string
required
temporal_api_key
string
required
organization_id
string
required
control_plane_url
string
required
heartbeat_interval
integer
required
litellm_api_url
string
required
litellm_api_key
string
required
queue_name
string
required
environment_name
string
required
control_plane_sdk_version
string
required
websocket_enabled
boolean
default:true
websocket_url
string | null
websocket_features
string[]