Outbound-Assistenten abrufen
curl --request GET \
--url https://app.famulor.de/api/user/assistants/outbound \
--header 'Authorization: Bearer <token>'[
{
"id": 123,
"user_id": 1,
"name": "Sales Outbound Assistant",
"type": "outbound",
"mode": "pipeline",
"status": "active",
"voice_id": 8,
"language_id": 1,
"timezone": "America/New_York",
"initial_message": "Hi, this is Sarah from Your Company. I hope I'm catching you at a good time. How are you doing today?",
"system_prompt": "You are a sales representative for Your Company. Be professional, friendly, and focus on qualifying leads.",
"variables": {
"company_name": "Your Company",
"product_line": "Premium Services"
},
"webhook_url": "https://yourcompany.com/api/webhooks/outbound-calls",
"is_webhook_active": true,
"created_at": "2025-07-15T14:32:15.000000Z",
"updated_at": "2025-08-02T09:18:42.000000Z"
},
{
"id": 124,
"user_id": 1,
"name": "Follow-up Assistant",
"type": "outbound",
"mode": "multimodal",
"status": "inactive",
"voice_id": 12,
"language_id": 1,
"timezone": "America/Los_Angeles",
"initial_message": "Hello! I'm calling to follow up on our previous conversation. Do you have a few minutes to chat?",
"system_prompt": "You are a follow-up specialist. Be warm and professional while gathering feedback and next steps.",
"variables": {
"purpose": "follow_up",
"max_duration": "5_minutes"
},
"webhook_url": null,
"is_webhook_active": false,
"created_at": "2025-07-20T10:15:30.000000Z",
"updated_at": "2025-07-25T16:45:22.000000Z"
}
]
Outbound-Assistenten abrufen
Alle Outbound-Assistenten für den authentifizierten Benutzer abrufen
GET
/
api
/
user
/
assistants
/
outbound
Outbound-Assistenten abrufen
curl --request GET \
--url https://app.famulor.de/api/user/assistants/outbound \
--header 'Authorization: Bearer <token>'[
{
"id": 123,
"user_id": 1,
"name": "Sales Outbound Assistant",
"type": "outbound",
"mode": "pipeline",
"status": "active",
"voice_id": 8,
"language_id": 1,
"timezone": "America/New_York",
"initial_message": "Hi, this is Sarah from Your Company. I hope I'm catching you at a good time. How are you doing today?",
"system_prompt": "You are a sales representative for Your Company. Be professional, friendly, and focus on qualifying leads.",
"variables": {
"company_name": "Your Company",
"product_line": "Premium Services"
},
"webhook_url": "https://yourcompany.com/api/webhooks/outbound-calls",
"is_webhook_active": true,
"created_at": "2025-07-15T14:32:15.000000Z",
"updated_at": "2025-08-02T09:18:42.000000Z"
},
{
"id": 124,
"user_id": 1,
"name": "Follow-up Assistant",
"type": "outbound",
"mode": "multimodal",
"status": "inactive",
"voice_id": 12,
"language_id": 1,
"timezone": "America/Los_Angeles",
"initial_message": "Hello! I'm calling to follow up on our previous conversation. Do you have a few minutes to chat?",
"system_prompt": "You are a follow-up specialist. Be warm and professional while gathering feedback and next steps.",
"variables": {
"purpose": "follow_up",
"max_duration": "5_minutes"
},
"webhook_url": null,
"is_webhook_active": false,
"created_at": "2025-07-20T10:15:30.000000Z",
"updated_at": "2025-07-25T16:45:22.000000Z"
}
]
Alle Outbound-Assistenten für den authentifizierten Benutzer abrufen.
Dieser Endpunkt gibt eine Liste aller Outbound-Assistenten zurück, die dem authentifizierten Benutzer gehören. Outbound-Assistenten werden für Anrufe an Leads und Interessenten verwendet.
Antwort-Felder
Anzeigen Eigenschaften
Anzeigen Eigenschaften
Die eindeutige Kennung des Assistenten
Die ID des Benutzers, dem dieser Assistent gehört
Der Name des Assistenten
Der Typ des Assistenten (für diesen Endpunkt immer “outbound”)
Der Engine-Modus (
pipeline oder multimodal)Der aktuelle Status des Assistenten
Die ID der vom Assistenten verwendeten Stimme
Die ID der vom Assistenten verwendeten Sprache
Die Zeitzoneneinstellung für den Assistenten
Die erste Nachricht, die der Assistent spricht
Der System-Prompt, der das Verhalten des Assistenten definiert
Benutzerdefinierte Variablen für den Assistenten
Die Webhook-URL für Benachrichtigungen nach dem Anruf
Ob Webhook-Benachrichtigungen aktiviert sind
Das Datum und die Uhrzeit, wann der Assistent erstellt wurde
Das Datum und die Uhrzeit der letzten Aktualisierung des Assistenten
[
{
"id": 123,
"user_id": 1,
"name": "Sales Outbound Assistant",
"type": "outbound",
"mode": "pipeline",
"status": "active",
"voice_id": 8,
"language_id": 1,
"timezone": "America/New_York",
"initial_message": "Hi, this is Sarah from Your Company. I hope I'm catching you at a good time. How are you doing today?",
"system_prompt": "You are a sales representative for Your Company. Be professional, friendly, and focus on qualifying leads.",
"variables": {
"company_name": "Your Company",
"product_line": "Premium Services"
},
"webhook_url": "https://yourcompany.com/api/webhooks/outbound-calls",
"is_webhook_active": true,
"created_at": "2025-07-15T14:32:15.000000Z",
"updated_at": "2025-08-02T09:18:42.000000Z"
},
{
"id": 124,
"user_id": 1,
"name": "Follow-up Assistant",
"type": "outbound",
"mode": "multimodal",
"status": "inactive",
"voice_id": 12,
"language_id": 1,
"timezone": "America/Los_Angeles",
"initial_message": "Hello! I'm calling to follow up on our previous conversation. Do you have a few minutes to chat?",
"system_prompt": "You are a follow-up specialist. Be warm and professional while gathering feedback and next steps.",
"variables": {
"purpose": "follow_up",
"max_duration": "5_minutes"
},
"webhook_url": null,
"is_webhook_active": false,
"created_at": "2025-07-20T10:15:30.000000Z",
"updated_at": "2025-07-25T16:45:22.000000Z"
}
]
Hinweise
- Dieser Endpunkt gibt nur Assistenten mit dem Typ “outbound” zurück
- Alle Assistenten des authentifizierten Benutzers werden zurückgegeben (keine Paginierung)
- Verwenden Sie diese Assistenten mit dem Make-Call-Endpunkt, um ausgehende Anrufe zu starten
- Outbound-Assistenten können für Verkaufsgespräche, Follow-ups, Umfragen und andere proaktive Anrufszenarien verwendet werden
Passende Seiten: Introduction und Authentication Guide und API Integration Examples.
War diese Seite hilfreich?
⌘I

