PUT
/
api
/
workers
/
{workerId}
/
deployments
/
voice
/
{deploymentId}
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
)
voice_deployment = client.workers.deployments.voice.update(
    deployment_id="deploymentId",
    worker_id="workerId",
)
print(voice_deployment.id)
{
  "id": "<string>",
  "phoneNumber": "<string>",
  "voiceProvider": "<string>",
  "voiceId": "<string>",
  "agentId": "<string>",
  "externalConfig": {}
}

Authorizations

x-api-key
string
header
required

API key authentication

Path Parameters

workerId
string
required
deploymentId
string
required

Body

application/json
name
string
phoneNumber
string
flowId
string
externalConfig
string
successCriteria
string

Response

200
application/json
Updated voice deployment
id
string
required
phoneNumber
string | null
voiceProvider
string | null
voiceId
string | null
agentId
string | null
externalConfig
object | null