8000 use office reference in docs · Web5design/twilio-python@b000012 · GitHub
[go: up one dir, main page]

Skip to content

Commit b000012

Browse files
author
Doug Black
committed
use office reference in docs
1 parent 5d34960 commit b000012

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/usage/sip.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Creating a Sip Domain
1313

1414
The :class:`Domains` resource allows you to create a new domain. To
1515
create a new domain, you'll need to choose a unique domain that lives
16-
under sip.twilio.com. For example, doug.sip.twilio.com.
16+
under sip.twilio.com. For example, dunder-mifflin-scranton.sip.twilio.com.
1717

1818
.. code-block:: python
1919
@@ -25,9 +25,9 @@ under sip.twilio.com. For example, doug.sip.twilio.com.
2525
client = TwilioRestClient(account_sid, auth_token)
2626
2727
domain = client.sip.domains.create(
28-
friendly_name="Sam's Domain",
28+
friendly_name="The Office Domain",
2929
voice_url="http://example.com/voice",
30-
domain_name="sam.sip.twilio.com",
30+
domain_name="dunder-mifflin-scranton.sip.twilio.com",
3131
)
3232
print domain.sid
3333
@@ -36,7 +36,7 @@ Creating a new IpAccessControlList
3636

3737
To control access to your new domain, you'll need to explicitly grant access
3838
to individual ip addresses. To do this, you'll first need to create an
39-
:class:`IpAccessControlList` to hold the ip addresses you wish to allow.
39+
:class:`IpAccessControlList` to hold the ip addresses you wish to allow.
4040

4141
.. code-block:: python
4242
@@ -48,7 +48,7 @@ to individual ip addresses. To do this, you'll first need to create an
4848
client = TwilioRestClient(account_sid, auth_token)
4949
5050
ip_acl = client.sip.ip_access_control_lists.create(
51-
friendly_name="My IpAccessControlList",
51+
friendly_name="The Office IpAccessControlList",
5252
)
5353
print ip_acl.sid
5454
@@ -69,7 +69,7 @@ Now it's time to add an :class:`IpAddress` to your new :class:`IpAccessControlLi
6969
ip_address = client.sip.ip_addresses(
7070
"AL456", # IpAccessControlList sid
7171
).create(
72-
friendly_name="Sam's Computer",
72+
friendly_name="Dwight's Computer",
7373
ip_address="192.168.1.42",
7474
)
7575
print ip_address.sid

0 commit comments

Comments
 (0)
0