Skip to main content
POST
https://app.famulor.de/api/
/
user
/
assistants
/
enable-inbound-webhook
Enable assistant inbound webhook
curl --request POST \
  --url https://app.famulor.de/api/user/assistants/enable-inbound-webhook \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "assistant_id": 123,
  "webhook_url": "<string>"
}
'
{
  "message": "Webhook enabled successfully",
  "data": []
}
Enable real-time webhook notifications for inbound calls. You’ll receive notifications when inbound calls complete with all call data.

Request Body

assistant_id
integer
required
The identifier of the assistant to enable webhooks for
webhook_url
string
required
The endpoint URL where notifications will be sent

Response

message
string
Success confirmation message
data
array
Empty array (reserved for future functionality)

Error Responses

404 Not Found
422 Validation Error
{
  "message": "Webhook enabled successfully",
  "data": []
}