action twilio_create_address { label: "CreateAddress" description: "" provider: twilio method: POST path: "/2010-04-01/Accounts/{AccountSid}/Addresses.json" encoding: form input: { type: "object" properties: { AccountSid: { type: "string" } } required: ["AccountSid"] additionalProperties: false } output: { type: "object" properties: { account_sid: { type: "string" description: "The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that is responsible for the Address resource." } city: { type: "string" description: "The city in which the address is located." } customer_name: { type: "string" description: "The name associated with the address.This property has a maximum length of 16 4-byte characters, or 21 3-byte characters." } 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_enabled: { type: "boolean" description: "Whether emergency calling has been enabled on this number." } friendly_name: { type: "string" description: "The string that you assigned to describe the resource." } iso_country: { type: "string" format: "iso-country-code" description: "The ISO country code of the address." } postal_code: { type: "string" description: "The postal code of the address." } region: { type: "string" description: "The state or region of the address." } sid: { type: "string" description: "The unique string that that we created to identify the Address resource." } street: { type: "string" description: "The number and street address of the address." } street_secondary: { type: "string" description: "The additional number and street address of the address." } uri: { type: "string" description: "The URI of the resource, relative to `https://api.twilio.com`." } validated: { type: "boolean" description: "Whether the address has been validated to comply with local regulation. In countries that require valid addresses, an invalid address will not be accepted. `true` indicates the Address has been validated. `false` indicate the country doesn't require validation or the Address is not valid." } verified: { type: "boolean" description: "Whether the address has been verified to comply with regulation. In countries that require valid addresses, an invalid address will not be accepted. `true` indicates the Address has been verified. `false` indicate the country doesn't require verified or the Address is not valid." } } } }