action telnyx_list_conference_participants { label: "List conference participants" description: "Lists conference participants" provider: telnyx method: GET path: "/conferences/{conference_id}/participants" encoding: json input: { type: "object" properties: { conference_id: { type: "string" } "filter[muted]": { type: "boolean" } "filter[on_hold]": { type: "boolean" } "filter[whispering]": { type: "boolean" } } required: ["conference_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }