16011: Conference Event: Error Response to Callback URL
VOICE
ERROR
Twilio returns This error when it receives an error response while sending a conference event to the callback URL configured on the conference. Conference events are sent to the statusCallback URL, and the events that trigger those requests are controlled by statusCallbackEvent. Twilio expects status callback webhooks to return a simple 200 OK response.
- The
statusCallbackURL configured for the conference is incorrect, or the first participant set a different URL than the one you intended, because later participants cannot override it. - Your webhook endpoint returned a non-
200 OKresponse, such as a4xxor5xx, when Twilio sent the conference event callback. - Your webhook handler does not accept the request method Twilio is using. For conference status callbacks,
statusCallbackMethoddefaults toPOST.
- Verify the
statusCallbackURL for the conference and make sure the first participant to join supplies the correct value, since laterstatusCallbackvalues are ignored. - Update your webhook handler so it successfully receives the conference event request and returns
200 OK. - Confirm the endpoint accepts the configured request method, and use
POSTunless you explicitly configured a differentstatusCallbackMethod.