PUT
/
api
/
workers
/
{workerId}
/
tests
/
{testId}
curl --request PUT \
  --url https://brainbase-monorepo-api.onrender.com/api/workers/{workerId}/tests/{testId} \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "name": "<string>",
  "description": "<string>",
  "checkpoints": [
    {
      "name": "<string>",
      "description": "<string>",
      "runs": 123,
      "tolerance": 123
    }
  ],
  "testMode": "<string>",
  "systemPrompt": "<string>",
  "flowId": "<string>"
}'

Authorizations

x-api-key
string
header
required

API key authentication

Path Parameters

workerId
string
required
testId
string
required

Body

application/json
name
string
description
string
checkpoints
object[]
testMode
string
systemPrompt
string
flowId
string

Response

200

Test updated successfully