13806: Invalid Client Notification URL
VOICE
ERROR
This error means the configured clientNotificationUrl is not a valid URL for Voice client call notifications. Twilio uses clientNotificationUrl to notify your application when a call routes to a Voice SDK client user, and the URL must contain a valid hostname, cannot include underscores, and only accepts POST.
- The configured
clientNotificationUrlis malformed or otherwise not a valid URL. - The URL hostname is invalid or includes underscores.
- The URL is not configured to use
POST.
- Replace
clientNotificationUrlwith a valid URL that uses a valid hostname and does not include underscores. - Configure the notification endpoint to accept
POSTrequests. - Verify your webhook handler responds appropriately to client call notifications. Twilio sends the request body as JSON, and the endpoint should return
200 OKwhen a matching client binding is found or404 Not Foundwhen it is not.