POST
/
api
/
workers
/
{workerId}
/
deployments
/
voicev1
/
{deploymentId}
/
campaigns
curl --request POST \
  --url https://brainbase-monorepo-api.onrender.com/api/workers/{workerId}/deployments/voicev1/{deploymentId}/campaigns \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "steps": [
    {}
  ]
}'
{
  "id": "<string>",
  "status": "RUNNING",
  "steps": [
    {}
  ]
}

Authorizations

x-api-key
string
header
required

API key authentication

Path Parameters

workerId
string
required
deploymentId
string
required

Body

application/json
steps
object[]

Array of campaign steps

Response

201
application/json
Campaign created successfully
id
string
status
enum<string>
Available options:
RUNNING,
COMPLETED,
FAILED
steps
object[]