Skip to content
Andrew Benton edited this page Jul 30, 2011 · 11 revisions

Home | Documentation | TwiML

Documentation: TwiML

TwiML support is based on the builder library. This document is not intended to be a guide to all TwiML Verbs and Nouns and their attributes. Consult the official TwiML documentation for the complete reference.

You can construct a TwiML response like this:

# build up a response
response = Twilio::TwiML::Response.new do |r|
  r.Say 'hello there', :voice => 'woman'
  r.Dial :callerId => '+14159992222' do |d|
    d.Client 'jenny'
  end
end

# print the result
puts response.text

This will print the following (except for the whitespace):

<?xml version="1.0" encoding="UTF-8"?>
<Response>
  <Say voice="woman">hello there</Say>
  <Dial callerId="+14159992222">
    <Client>jenny</Client>
  </Dial>
</Response>
Clone this wiki locally