Skip to content

Instantly share code, notes, and snippets.

@jonahglover
Created July 19, 2015 00:47
Show Gist options
  • Save jonahglover/203919ac7ffb3635871a to your computer and use it in GitHub Desktop.
Save jonahglover/203919ac7ffb3635871a to your computer and use it in GitHub Desktop.
sample outgoing call twimlet
def agent
response = Twilio::TwiML::Response.new do |r|
r.Dial do |d|
d.Number(params[:outgoing_number])
end
end
render :xml => response.text
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment