Assistants#
Create, configure, and manage conversation leads.
GET
/v2/assistantsAll assistants of the tenant, most recently changed first.
POST
/v2/assistantsbash
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/assistantsGET
/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#
| Field | Type | Meaning |
|---|---|---|
name | string | Display name in the console |
prompt | string | Behavior instruction for the conversation LLM |
voice_profile | string | Engine from the model registry, default cascade-together |
config | object | Conversation configuration (see Agents) |