Skip to main content
POST
https://app.famulor.de/api/
/
user
/
assistants
/
disable-inbound-webhook
Disable assistant inbound webhook
curl --request POST \
  --url https://app.famulor.de/api/user/assistants/disable-inbound-webhook \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "assistant_id": 123
}
'
{
  "message": "Inbound webhook disabled successfully",
  "data": []
}
Disable inbound webhook notifications for an assistant. This stops delivery of real-time updates about inbound call completions and associated data.

Request Body

assistant_id
integer
required
The identifier of the assistant to disable inbound 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": "Inbound webhook disabled successfully",
  "data": []
}