Webhook Live

I have activated my workflow and how can I run it through the live?

Because when I click the production url, it will show me this message.

The webhook is post to the ElevenLabs. Can anyone know how to solve it

Now when I click the “test agent” button in Elevenlabs, then it only will execute this workflow. So when I activated and using the production url, then what it will display actually? will directly start the conversation in Elevenlabs or what?

Change in webhook settings from GET to POST.

And I won t display anything, since it’s act like an API endpoint.

If change it, I cannot get the response from the Elevenlabs?

what actually you expect from elevenlabs ?

If you wwant to receive events (like transcription or the audio), an webhook is needed to receive via POST when a call ends(supposing you set that webhook in the 11labs post-call webhook in conversation settings).

If you need Initiation client data(sending dinamic variables), it has to be set as well the webhook from where 11labs will get that trough a POST request .

If you need realtime data like server to client (user_trasncript, agent_response etc..) you need websocket .

more info you can find in the docs :

Example:

I have 3 workflows.

1 . triggers the outbound call and receive the response with conversation_id(for later use in websoket), and imediattly 11labs will send a POST request to my 2nd workflow to retieve the data.

  1. workflow is webhook that sends dinamic variables and optitonal overrride ssytem prompt etc.. when 11labs “shakehand” after the trigger.
  1. and 3rd workflow that is a webhook which listens for end report
1 Like

Alright. Thanks for yr information

1 Like

I understand what you want, but there is no “plug and play” solution for this… it requires several steps and custom code for an interface and getting realtime data…