We've got a basic twiml set up that sends a call to multiple destinations, it looks something like this:
<?xml version="1.0" encoding="UTF-8"?>
<Response>
<Play loop="10">https://xxx.xxx.xxx/assets/MoH.wav</Play>
<Dial>
<Number>+1800XXXXXXX</Number>
<Number>+1912XXXXXXX</Number>
</Dial>
</Response>
The problem with this is that the <Dial>
doesn't happen until the <Play>
finishes. We want to play music to the caller while waiting for the call to be answered by one of the destination parties.
We've tried <Enqueue>
to play the music but it still doesn't dial simultaneously.