action twilio_list_sip_ip_access_control_list { label: "ListSipIpAccessControlList" description: "Retrieve a list of IpAccessControlLists that belong to the account used to make the request" provider: twilio method: GET path: "/2010-04-01/Accounts/{AccountSid}/SIP/IpAccessControlLists.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: { end: { type: "integer" } first_page_uri: { type: "string" format: "uri" } ip_access_control_lists: { type: "array" items: { type: "object" properties: { account_sid: { type: "string" description: "The unique id of the [Account](https://www.twilio.com/docs/iam/api/account) that owns this resource." } 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, up to 255 characters long." } sid: { type: "string" description: "A 34 character string that uniquely identifies this resource." } subresource_uris: { type: "object" format: "uri-map" description: "A list of the IpAddress resources associated with this IP access control list 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" } } } }