API Reference
Enable assistant inbound webhook
Enable inbound webhook notifications for a specific assistant
On this page
This endpoint enables inbound webhook notifications for an assistant, allowing you to receive real-time updates about inbound call completions and data.
Request Body
assistant_idintegerrequired
The ID of the assistant to enable webhook for
webhook_urlstringrequired
The URL where webhook notifications will be sent
Response
messagestring
Success message confirming webhook was enabled
dataarray
Empty array (reserved for future use)
Error Responses
404 Not Found
422 Validation Error
{
"message": "Webhook enabled successfully",
"data": []
}
{
"message": "Assistant not found"
}
{
"message": "The given data was invalid.",
"errors": {
"assistant_id": [
"The assistant id field is required."
],
"webhook_url": [
"The webhook url field is required."
]
}
}
Related guides
API Reference
Introduction
Welcome to the VoxLink API
Read guide →API Reference
Authentication
Learn how to authenticate your API requests
Read guide →API Reference
Get current user
Get the authenticated user's profile information
Read guide →API Reference
List assistants
List all assistants for the authenticated user with pagination
Read guide →