action vimeo_get_video_tags { label: "Get all the tags of a video" provider: vimeo method: GET path: "/videos/{video_id}/tags" encoding: json input: { type: "object" properties: { video_id: { type: "number" } } required: ["video_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }