POST
/
api
/
workers
import os
from brainbase_labs import BrainbaseLabs

client = BrainbaseLabs(
    api_key=os.environ.get("BRAINBASE_LABS_API_KEY"),  # This is the default and can be omitted
)
worker = client.workers.create(
    description="description",
    name="name",
    status="status",
)
print(worker.id)
{
  "id": "<string>",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z",
  "name": "<string>",
  "description": "<string>",
  "status": "<string>",
  "lastRefreshedAt": "2023-11-07T05:31:56Z",
  "teamId": "<string>"
}

Authorizations

x-api-key
string
header
required

API key authentication

Body

application/json
name
string
required
description
string
required
status
string
required

Response

201
application/json
Worker created
id
string
required
createdAt
string
required
updatedAt
string
required
name
string
required
teamId
string
required
description
string | null
status
string | null
lastRefreshedAt
string | null