action twilio_list_available_phone_number_country { label: "ListAvailablePhoneNumberCountry" description: "" provider: twilio method: GET path: "/2010-04-01/Accounts/{AccountSid}/AvailablePhoneNumbers.json" encoding: json input: { type: "object" properties: { AccountSid: { type: "string" } Page: { type: "integer" } PageSize: { type: "integer" } PageToken: { type: "string" } } required: ["AccountSid"] additionalProperties: false } output: { type: "object" properties: { countries: { type: "array" items: { type: "object" properties: { beta: { type: "boolean" description: "Whether all phone numbers available in the country are new to the Twilio platform. `true` if they are and `false` if all numbers are not in the Twilio Phone Number Beta program." } country: { type: "string" description: "The name of the country." } country_code: { type: "string" format: "iso-country-code" description: "The [ISO-3166-1](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) country code of the country." } subresource_uris: { type: "object" format: "uri-map" description: "A list of related AvailablePhoneNumber resources identified by their URIs relative to `https://api.twilio.com`." } uri: { type: "string" format: "uri" description: "The URI of the Country resource, relative to `https://api.twilio.com`." } } } } 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" } } } }