VoxLink.ai

API Reference

Disable conversation ended webhook

Disable conversation ended webhook notifications for an assistant

Updated 24 Mar 2026

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

Request Body

assistant_idintegerrequired

The ID of the assistant to disable the conversation ended webhook for

Response

messagestring

Success message confirming webhook was disabled

dataarray

Empty array (reserved for future use)

Error Responses

404 Not Found

messagestring

  Error message when the assistant is not found or doesn't belong to the authenticated user

422 Validation Error

messagestring

  Error message indicating validation failure

errorsobject

  Detailed validation errors for each field
{
  "message": "Conversation ended webhook disabled successfully",
  "data": []
}
{
  "message": "Assistant not found"
}
{
  "message": "The given data was invalid.",
  "errors": {
    "assistant_id": [
      "The assistant id field is required."
    ]
  }
}

Related guides