AssistantsAPI Reference

Assistants#

Create, configure, and manage conversation leads.

GET/v2/assistants

All assistants of the tenant, most recently changed first.

POST/v2/assistants
bash
curl -s -X POST -H "Content-Type: application/json" -H "X-Tenant: bbe" \
  -d '{
    "name": "Reception",
    "prompt": "Capture requests in a friendly way and clarify the callback wish.",
    "voice_profile": "cartesia",
    "config": { "greeting": "Guten Tag, was kann für Sie erledigt werden?" }
  }' \
  https://api.callfluence.staging.bestbrandseverywhere.com/v2/assistants
GET/v2/assistants/{id}
PATCH/v2/assistants/{id}

Partial update: only the fields you send change.

DELETE/v2/assistants/{id}

Responds 204 on success, 404 if the assistant does not belong to the tenant.

Fields#

FieldTypeMeaning
namestringDisplay name in the console
promptstringBehavior instruction for the conversation LLM
voice_profilestringEngine from the model registry, default cascade-together
configobjectConversation configuration (see Agents)
CallFluence — voice AI platform. Last updated 2026-07-27.