action vimeo_get_channel_tags { label: "Get all the tags that have been added to a channel" description: "This method gets all the tags that have been added to the specified channel." provider: vimeo method: GET path: "/channels/{channel_id}/tags" encoding: json input: { type: "object" properties: { channel_id: { type: "number" } } required: ["channel_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }