Skip to main content
POST
/
api
/
user
/
assistants
/
disable-conversation-ended-webhook
Disable conversation ended webhook
curl --request POST \
  --url https://app.famulor.de/api/user/assistants/disable-conversation-ended-webhook \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "assistant_id": 123
}
'
{
  "message": "Conversation ended webhook disabled successfully",
  "data": []
}

Documentation Index

Fetch the complete documentation index at: https://docs.famulor.io/llms.txt

Use this file to discover all available pages before exploring further.

Disable conversation ended webhook notifications for an assistant, stopping the delivery of updates when chat conversations end.

Request Body

assistant_id
integer
required
The ID of the assistant to disable the conversation ended 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": "Conversation ended webhook disabled successfully",
  "data": []
}

See Also