Skip to main content
POST
/
user
/
assistants
/
disable-conversation-ended-webhook
Деактивиране на webhook за приключена конversация
curl --request POST \
  --url https://call.aiployees.com/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.aiployees.com/llms.txt

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

Този endpoint деактивира webhook уведомленията за приключена конversация за асистент, спирайки доставката на актуализации когато чат конversациите приключат.

Request Body

assistant_id
integer
required
ID на асистента за който да се деактивира webhook за приключена конversация

Response

message
string
Съобщение за успех потвърждаващо че webhook е деактивиран
data
array
Празен масив (запазен за бъдеща употреба)

Error Responses

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