Skip to main content
POST
/
api
/
v1
/
workers
/
{worker_id}
/
start
Start Worker
curl --request POST \
  --url https://control-plane.kubiya.ai/api/v1/workers/{worker_id}/start \
  --header 'Content-Type: application/json' \
  --data '{
  "system_info": {}
}'
{
  "worker_id": "<string>",
  "worker_queue_name": "<string>",
  "environment_name": "<string>",
  "task_queue_name": "<string>",
  "temporal_namespace": "<string>",
  "temporal_host": "<string>",
  "temporal_api_key": "<string>",
  "organization_id": "<string>",
  "control_plane_url": "<string>",
  "heartbeat_interval": 60,
  "litellm_api_url": "<string>",
  "litellm_api_key": "<string>"
}

Path Parameters

worker_id
string
required

Body

application/json

Request to start a worker and fetch its config

system_info
object

Response

Successful Response

Worker configuration response

worker_id
string
required
worker_queue_name
string
required
environment_name
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
litellm_api_url
string
required
litellm_api_key
string
required
heartbeat_interval
integer
default:60