action telnyx_list_queue_calls { label: "Retrieve calls from a queue" description: "Retrieve the list of calls in an existing queue" provider: telnyx method: GET path: "/queues/{queue_name}/calls" encoding: json input: { type: "object" properties: { queue_name: { type: "string" } } required: ["queue_name"] additionalProperties: false } output: { type: "object" additionalProperties: true } }