Skip to content

Instantly share code, notes, and snippets.

@bevenky
Created March 12, 2013 08:20
Show Gist options
  • Save bevenky/5141113 to your computer and use it in GitHub Desktop.
Save bevenky/5141113 to your computer and use it in GitHub Desktop.
import plivo
auth_id = ""
auth_token = ""
p = plivo.RestAPI(auth_id, auth_token)
# Make Calls
params = {
'from': '1212121212', # Caller Id
'to' : '232323232323', # User Number to Call
'answer_url' : ".......",
}
response = p.make_call(params)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment