action vimeo_get_channel_privacy_users { label: "Get all the users who can view a private channel" description: "This method gets all the users who have access to the specified private channel." provider: vimeo method: GET path: "/channels/{channel_id}/privacy/users" encoding: json input: { type: "object" properties: { channel_id: { type: "number" } direction: { type: "string" enum: ["asc", "desc"] } page: { type: "number" } per_page: { type: "number" } } required: ["channel_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }