action vimeo_get_comments_alt1 { label: "Get all the comments on a video" provider: vimeo method: GET path: "/channels/{channel_id}/videos/{video_id}/comments" encoding: json input: { type: "object" properties: { channel_id: { type: "number" } direction: { type: "string" enum: ["asc", "desc"] } page: { type: "number" } per_page: { type: "number" } video_id: { type: "number" } } required: ["channel_id", "video_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }