8000 Fix for the usage documentation on initiating an outbound call by inconshreveable · Pull Request #13 · twilio/twilio-python · GitHub
[go: up one dir, main page]

Skip to content

Fix for the usage documentation on initiating an outbound call #13

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 21, 2011
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix for the documentation on initiating a new call.
  • Loading branch information
aes committed Jul 21, 2011
commit c1186a02b99dfa79942e2c3d89792168ebdea2bc
4 changes: 2 additions & 2 deletions docs/usage/phone-calls.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ The :class:`Calls` resource allows you to make outgoing calls. Before a call can
from twilio.rest import TwilioRestClient

client = TwilioRestClient()
call = client.calls.make(to="9991231234, from_="9991231234")
url="http://foo.com/call.xml")
call = client.calls.create(to="9991231234, from_="9991231234",
url="http://foo.com/call.xml")
print call.length
print call.sid

Expand Down
0