action twilio_fetch_member { label: "FetchMember" description: "Fetch a specific member from the queue" provider: twilio method: GET path: "/2010-04-01/Accounts/{AccountSid}/Queues/{QueueSid}/Members/{CallSid}.json" encoding: json input: { type: "object" properties: { AccountSid: { type: "string" } CallSid: { type: "string" } QueueSid: { type: "string" } } required: ["AccountSid", "CallSid", "QueueSid"] additionalProperties: false } output: { 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." } } } }