Hi Guys,
i build an Call Agent with Ultravox. It works very well.
But in case, the Agent, can´t answer the question, he should transfer the call to an employee.
So the Employee get a Call over Twilio and insert the generated conference room.
With the Body:
Twiml
<Response>
<Say voice="alice" language="de-DE">Sie werden zu einem Mitarbeiter weitergeleitet. Bitte bleiben Sie dran.</Say>
<Dial>
<Conference
startConferenceOnEnter="true"
endConferenceOnExit="true"
{{ $('Extract Call Data').item.json.conferenceName }}
</Conference>
</Dial>
</Response>
I got "The resource you are requesting could not be found" 404 Response. But the call is active in twilio.
Doe´s anyone have an idea?