Skip to content

Instantly share code, notes, and snippets.

View dice's full-sized avatar
🤸‍♂️
Not CartWheeling

Daisuke Don Horie dice

🤸‍♂️
Not CartWheeling
View GitHub Profile
@dice
dice / speak2.xml
Created September 29, 2012 16:23
FullCourt PhoneXML Speak Example
<?xml version="1.0" encoding="UTF-8" ?>
<Response>
<Speak loop="3">Goal</Speak>
</Response>
@dice
dice / speak1.xml
Created September 29, 2012 16:22
FullCourt PhoneXML Speak Example
<?xml version="1.0" encoding="UTF-8" ?>
<Response>
<Speak>Welcome to FullCourt.</Speak>
</Response>
@dice
dice / redirect.xml
Created September 29, 2012 16:18
FullCourt PhoneXML Redirect example
<?xml version="1.0" encoding="UTF-8"?>
<Response>
<Speak>Transfer has been...</Speak>
<Redirect>http://www.fullcourt.co/apps/nextaction.php</Redirect>
</Response>
@dice
dice / record2.xml
Created September 29, 2012 16:10
FullCourt PhoneXML Record example
<Response>
<Record action="http://www.fullcourt.co/apps/get_recording/" startOnDialAnswer="true"/>
<Dial>
<Number sendDigits="www1234">81312345678</Number>
</Dial>
</Response>
@dice
dice / record1.xml
Created September 29, 2012 16:08
FullCourt PhoneXML Record sample
<Response>
<Play>http://www.fullcourt.co/apps/voicemail.mp3</Play>
<Record action="http://www.fullcourt.co/apps/get_recording/" maxLength="30" finishOnKey="*"/>
<Speak>Recording not received.</Speak>
</Response>
@dice
dice / play.xml
Created September 29, 2012 16:01
FullCourt PhoneXML Play sample
<Response>
<Play>https://s3.amazonaws.com/fullcourt/welcome.mp3</Play>
</Response>
@dice
dice / number2.xml
Created September 28, 2012 14:00
FullCourt PhoneXML Number sample
<Response>
<Dial>
<Number>81312345678</Number>
<Number>81690123456</Number>
<Number>81457890123</Number>
</Dial>
</Response>
@dice
dice / number1.xml
Created September 28, 2012 13:59
FullCourt Number Sample
<Response>
<Dial>
<Number sendDigits="www9012">81312345678</Number>
</Dial>
</Response>
@dice
dice / getdigits.xml
Last active October 11, 2015 03:58
FullCourt PhoneXML GetDigits sample
<Response>
<GetDigits action="http://www.fullcourt.co/apps/getdigit.php" method="GET">
<Speak>Please enter your 4-digit secure key number, followed by the pound key</Speak>
</GetDigits>
<Speak>Input not received. Thank you</Speak>
</Response>
@dice
dice / phonexmlresponse.xml
Created September 28, 2012 12:32
FullCourt PhoneXML response
<?xml version="1.0" encoding="UTF-8" ?>
<Response>
<Play>http://www.fullcourt.co/apps/play.mp3</Play>
<Speak>Welcome to FullCourt</Speak>
</Response>