action vimeo_get_comment_replies { label: "Get all the replies to a video comment" provider: vimeo method: GET path: "/videos/{video_id}/comments/{comment_id}/replies" encoding: json input: { type: "object" properties: { comment_id: { type: "number" } page: { type: "number" } per_page: { type: "number" } video_id: { type: "number" } } required: ["comment_id", "video_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }