action twilio_fetch_available_phone_number_country { label: "FetchAvailablePhoneNumberCountry" description: "" provider: twilio method: GET path: "/2010-04-01/Accounts/{AccountSid}/AvailablePhoneNumbers/{CountryCode}.json" encoding: json input: { type: "object" properties: { AccountSid: { type: "string" } CountryCode: { type: "string" format: "iso-country-code" } } required: ["AccountSid", "CountryCode"] additionalProperties: false } output: { 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`." } } } }