Remove Twilio Beep

In any case, I can turn off the default twilio beep to start recording. I want to use my own client signal.

Basically, we need one beep when MP3 finishes playing. After that, we want 20 seconds to be empty, and as soon as 20 seconds have ended, we play three beeps so that he can start recording his answer.

+4
source share
1 answer

Twilio evangelist developer is here.

You can certainly turn off the beep! You can use the attribute playBeepin the verb <Record>and set it to false. A simple TwiML example of your description might be:

<Response>
  <Play>http://example.com/your.mp3</Play>
  <Record playBeep="false"/>
</Response>

Let me know if that helps.

+6

All Articles