8000
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 5325dcf commit 726d963Copy full SHA for 726d963
twilio/rest/__init__.py
@@ -153,6 +153,14 @@ def feedback(self, call_sid):
153
)
154
return CallFeedback(call_feedback_list)
155
156
+ def dependent_phone_numbers(self, address_sid):
157
+ """
158
+ Return a :class:`DependentPhoneNumbers <twilio.rest.resources.DependentPhoneNumbers>` instance for
159
+ the :class:`Address <twilio.rest.resources.Address>` with the given address_sid
160
161
+ base_uri = "%s/Addresses/%s" % (self.account_uri, address_sid)
162
+ return DependentPhoneNumbers(base_uri, self.auth, self.timeout)
163
+
164
def request(self, path, method=None, vars=None):
165
"""sends a request and gets a response from the Twilio REST API
166
0 commit comments