POST
/
user
/
assistants
/
disable-inbound-webhook
Disable assistant inbound webhook
curl --request POST \
  --url https://app.autocalls.ai/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": []
}
This endpoint disables inbound webhook notifications for an assistant, stopping the delivery of real-time updates about inbound call completions and data.

Request Body

assistant_id
integer
required
The ID of the assistant to disable webhook for

Response

message
string
Success message confirming webhook was disabled
data
array
Empty array (reserved for future use)

Error Responses

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