action twilio_list_sip_ip_address { label: "ListSipIpAddress" description: "Read multiple IpAddress resources." provider: twilio method: GET path: "/2010-04-01/Accounts/{AccountSid}/SIP/IpAccessControlLists/{IpAccessControlListSid}/IpAddresses.json" encoding: json input: { type: "object" properties: { AccountSid: { type: "string" } IpAccessControlListSid: { type: "string" } Page: { type: "integer" } PageSize: { type: "integer" } PageToken: { type: "string" } } required: ["AccountSid", "IpAccessControlListSid"] additionalProperties: false } output: { type: "object" properties: { end: { type: "integer" } first_page_uri: { type: "string" format: "uri" } ip_addresses: { type: "array" items: { type: "object" properties: { account_sid: { type: "string" description: "The unique id of the Account that is responsible for this resource." } cidr_prefix_length: { type: "integer" description: "An integer representing the length of the CIDR prefix to use with this IP address when accepting traffic. By default the entire IP address is used." } date_created: { type: "string" format: "date-time-rfc-2822" description: "The date that this resource was created, given as GMT in [RFC 2822](https://www.php.net/manual/en/class.datetime.php#datetime.constants.rfc2822) format." } date_updated: { type: "string" format: "date-time-rfc-2822" description: "The date that this resource was last updated, given as GMT in [RFC 2822](https://www.php.net/manual/en/class.datetime.php#datetime.constants.rfc2822) format." } friendly_name: { type: "string" description: "A human readable descriptive text for this resource, up to 255 characters long." } ip_access_control_list_sid: { type: "string" description: "The unique id of the IpAccessControlList resource that includes this resource." } ip_address: { type: "string" description: "An IP address in dotted decimal notation from which you want to accept traffic. Any SIP requests from this IP address will be allowed by Twilio. IPv4 only supported today." } sid: { type: "string" description: "A 34 character string that uniquely identifies this resource." } uri: { type: "string" description: "The URI for this resource, relative to `https://api.twilio.com`" } } } } 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" } } } }