PATCH
/
api
/
workers
/
{id}
curl --request PATCH \
  --url https://brainbase-monorepo-api.onrender.com/api/workers/{id} \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "name": "<string>",
  "description": "<string>",
  "status": "<string>"
}'
{
  "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

Path Parameters

id
string
required

Body

application/json
name
string
description
string
status
string

Response

200
application/json
Updated worker
id
string
required
createdAt
string
required
updatedAt
string
required
name
string
required
teamId
string
required
description
string | null
status
string | null
lastRefreshedAt
string | null