action vimeo_get_channel_moderator { label: "Get a specific channel moderator" provider: vimeo method: GET path: "/channels/{channel_id}/moderators/{user_id}" encoding: json input: { type: "object" properties: { channel_id: { type: "number" } user_id: { type: "number" } } required: ["channel_id", "user_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }