10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0db73f commit 9c08871Copy full SHA for 9c08871
docs/usage/accounts.rst
@@ -23,8 +23,8 @@ Use the :meth:`Account.update` to modify one of your accounts. Right now the onl
23
AUTH_TOKEN = "YYYYYYYYYYYYYYYYYY"
24
25
client = TwilioRestClient(ACCOUNT_SID, AUTH_TOKEN)
26
- account = client.accounts.get()
27
- account.update(name="My Awesome Account")
+ account = client.accounts.get(ACCOUNT_SID)
+ account.update(friendly_name="My Awesome Account")
28
29
Creating Subaccounts
30
----------------------
0 commit comments