action vimeo_get_channel_categories { label: "Get all the categories in a channel" description: "This method gets all the categories in the specified channel." provider: vimeo method: GET path: "/channels/{channel_id}/categories" encoding: json input: { type: "object" properties: { channel_id: { type: "number" } } required: ["channel_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }