action twilio_list_member { label: "ListMember" description: "Retrieve the members of the queue" provider: twilio method: GET path: "/2010-04-01/Accounts/{AccountSid}/Queues/{QueueSid}/Members.json" encoding: json input: { type: "object" properties: { AccountSid: { type: "string" } Page: { type: "integer" } PageSize: { type: "integer" } PageToken: { type: "string" } QueueSid: { type: "string" } } required: ["AccountSid", "QueueSid"] additionalProperties: false } output: { type: "object" properties: { end: { type: "integer" } first_page_uri: { type: "string" format: "uri" } next_page_uri: { type: "string" format: "uri" } page: { type: "integer" } page_size: { type: "integer" } previous_page_uri: { type: "string" format: "uri" } queue_members: { type: "array" items: { type: "object" properties: { call_sid: { type: "string" description: "The SID of the [Call](https://www.twilio.com/docs/voice/api/call-resource) the Member resource is associated with." } date_enqueued: { type: "string" format: "date-time-rfc-2822" description: "The date that the member was enqueued, given in RFC 2822 format." } position: { type: "integer" description: "This member's current position in the queue." } queue_sid: { type: "string" description: "The SID of the Queue the member is in." } uri: { type: "string" description: "The URI of the resource, relative to `https://api.twilio.com`." } wait_time: { type: "integer" description: "The number of seconds the member has been in the queue." } } } } start: { type: "integer" } uri: { type: "string" format: "uri" } } } }