DELETE
/
api
/
workers
/
{workerId}
/
flows
/
{flowId}
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.flows.delete(
    flow_id="flowId",
    worker_id="workerId",
)

Authorizations

x-api-key
string
header
required

API key authentication

Path Parameters

workerId
string
required
flowId
string
required

Response

204
_mintlify/placeholder

Flow deleted