action twilio_list_key { label: "ListKey" description: "" provider: twilio method: GET path: "/2010-04-01/Accounts/{AccountSid}/Keys.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" } keys: { type: "array" items: { type: "object" properties: { 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." } friendly_name: { type: "string" description: "The string that you assigned to describe the resource." } sid: { type: "string" description: "The unique string that that we created to identify the Key resource." } } } } 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" } } } }