DELETE
/
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
)
client.workers.deployments.voice.delete(
    deployment_id="deploymentId",
    worker_id="workerId",
)

Authorizations

x-api-key
string
header
required

API key authentication

Path Parameters

workerId
string
required
deploymentId
string
required

Response

204
_mintlify/placeholder

Voice deployment deleted