action twilio_list_dependent_phone_number { label: "ListDependentPhoneNumber" description: "" provider: twilio method: GET path: "/2010-04-01/Accounts/{AccountSid}/Addresses/{AddressSid}/DependentPhoneNumbers.json" encoding: json input: { type: "object" properties: { AccountSid: { type: "string" } AddressSid: { type: "string" } Page: { type: "integer" } PageSize: { type: "integer" } PageToken: { type: "string" } } required: ["AccountSid", "AddressSid"] additionalProperties: false } output: { type: "object" properties: { dependent_phone_numbers: { type: "array" items: { type: "object" properties: { account_sid: { type: "string" description: "The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the DependentPhoneNumber resource." } address_requirements: { type: "string" enum: ["none", "any", "local", "foreign"] } api_version: { type: "string" description: "The API version used to start a new TwiML session." } capabilities: { description: "The set of Boolean properties that indicates whether a phone number can receive calls or messages. Capabilities are `Voice`, `SMS`, and `MMS` and each capability can be: `true` or `false`." type: "object" } date_created: { type: "string" format: "date-time-rfc-2822" description: "The date and time in GMT that the resource was created specified in [RFC 2822](https://www.ietf.org/rfc/rfc2822.txt) format." } date_updated: { type: "string" format: "date-time-rfc-2822" description: "The date and time in GMT that the resource was last updated specified in [RFC 2822](https://www.ietf.org/rfc/rfc2822.txt) format." } emergency_address_sid: { type: "string" description: "The SID of the emergency address configuration that we use for emergency calling from the phone number." } emergency_status: { type: "string" enum: ["Active", "Inactive"] } friendly_name: { type: "string" format: "phone-number" description: "The string that you assigned to describe the resource." } phone_number: { type: "string" format: "phone-number" description: "The phone number in [E.164](https://www.twilio.com/docs/glossary/what-e164) format, which consists of a + followed by the country code and subscriber number." } sid: { type: "string" description: "The unique string that that we created to identify the DependentPhoneNumber resource." } sms_application_sid: { type: "string" description: "The SID of the application that handles SMS messages sent to the phone number. If an `sms_application_sid` is present, we ignore all `sms_*_url` values and use those of the application." } sms_fallback_method: { type: "string" format: "http-method" description: "The HTTP method we use to call `sms_fallback_url`. Can be: `GET` or `POST`." enum: ["HEAD", "GET", "POST", "PATCH", "PUT", "DELETE"] } sms_fallback_url: { type: "string" format: "uri" description: "The URL that we call when an error occurs while retrieving or executing the TwiML from `sms_url`." } sms_method: { type: "string" format: "http-method" description: "The HTTP method we use to call `sms_url`. Can be: `GET` or `POST`." enum: ["HEAD", "GET", "POST", "PATCH", "PUT", "DELETE"] } sms_url: { type: "string" format: "uri" description: "The URL we call when the phone number receives an incoming SMS message." } status_callback: { type: "string" format: "uri" description: "The URL we call using the `status_callback_method` to send status information to your application." } status_callback_method: { type: "string" format: "http-method" description: "The HTTP method we use to call `status_callback`. Can be: `GET` or `POST`." enum: ["HEAD", "GET", "POST", "PATCH", "PUT", "DELETE"] } trunk_sid: { type: "string" description: "The SID of the Trunk that handles calls to the phone number. If a `trunk_sid` is present, we ignore all of the voice urls and voice applications and use those set on the Trunk. Setting a `trunk_sid` will automatically delete your `voice_application_sid` and vice versa." } uri: { type: "string" description: "The URI of the resource, relative to `https://api.twilio.com`." } voice_application_sid: { type: "string" description: "The SID of the application that handles calls to the phone number. If a `voice_application_sid` is present, we ignore all of the voice urls and use those set on the application. Setting a `voice_application_sid` will automatically delete your `trunk_sid` and vice versa." } voice_caller_id_lookup: { type: "boolean" description: "Whether we look up the caller's caller-ID name from the CNAM database. Can be: `true` or `false`. Caller ID lookups can cost $0.01 each." } voice_fallback_method: { type: "string" format: "http-method" description: "The HTTP method we use to call `voice_fallback_url`. Can be: `GET` or `POST`." enum: ["HEAD", "GET", "POST", "PATCH", "PUT", "DELETE"] } voice_fallback_url: { type: "string" format: "uri" description: "The URL that we call when an error occurs retrieving or executing the TwiML requested by `url`." } voice_method: { type: "string" format: "http-method" description: "The HTTP method we use to call `voice_url`. Can be: `GET` or `POST`." enum: ["HEAD", "GET", "POST", "PATCH", "PUT", "DELETE"] } voice_url: { type: "string" format: "uri" description: "The URL we call when the phone number receives a call. The `voice_url` will not be used if a `voice_application_sid` or a `trunk_sid` is set." } } } } end: { type: "integer" } first_page_uri: { type: "string" format: "uri" } next_page_uri: { type: "string" format: "uri" } page: { type: "integer" } page_size: { type: "integer" } previous_page_uri: { type: "string" format: "uri" } start: { type: "integer" } uri: { type: "string" format: "uri" } } } }