Skip to main content
POST
https://app.famulor.de/api/
/
user
/
assistants
/
disable-webhook
Disable assistant webhook
curl --request POST \
  --url https://app.famulor.de/api/user/assistants/disable-webhook \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "assistant_id": 123
}
'
{
  "message": "Webhook disabled successfully",
  "data": []
}
Disable webhook notifications for an assistant. After disabling, you’ll no longer receive real-time updates about call completions.

Request Body

assistant_id
integer
required
The identifier of the assistant to disable webhooks for

Response

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

Error Responses

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

Webhook Behavior

When webhooks are disabled:
  • No more HTTP POST requests will be sent to your webhook URL
  • Both is_webhook_active becomes false and webhook_url is set to null
  • Ongoing calls will complete normally, but no notifications will be sent
  • Call data remains accessible via the API calls endpoints

Notes

  • The assistant must belong to your account
  • This completely removes the webhook configuration
  • You can re-enable webhooks later using the enable webhook endpoint with a new URL
  • Disabling webhooks doesn’t affect call recording or data collection