#I try to integrate my elevenlabs with twilio. However, after the voice configuration, I've set the

1 messages · Page 1 of 1 (latest)

nova slateBOT
#
AI-generated Answer for yves_69297

It seems like the issue is related to the route configuration in your server setup. The error message indicates that the server is not recognizing the route GET:/incoming-call-eleven. Here are a few steps you can take to troubleshoot and resolve this issue:

  1. Check Your Server Code: Ensure that your server is set up to handle POST requests at the /incoming-call-eleven endpoint. The route should be defined in your server code to match the path specified in the webhook URL.

  2. Verify HTTP Method: Make sure that the Twilio webhook is configured to use the POST method, as the server might be expecting a POST request rather than a GET request.

  3. Server Logs: Check your server logs to see if there are any additional error messages or details that might help identify the issue.

  4. Ngrok URL: Double-check that the ngrok URL is correctly set up and that your local server is running and accessible through ngrok.

  5. Example Code: If you are using example code, ensure that it includes the correct route handling for incoming calls. You might need to adjust the route path or method in the example code to match your setup.

If you continue to experience issues, reviewing the relevant documentation or examples on GitHub might provide further guidance.

frosty tartan
#

I try to integrate my elevenlabs with twilio. However, after the voice configuration, I've set the webhook for incoming calls to this format:
https://your-ngrok-url.ngrok.app/incoming-call-eleven

However, I get this message all the time

{
"message": "Route POST:/incoming-call-eleven not found",
"error": "Not Found",
"statusCode": 404
}

Anyone that can help me?