action cpy_get_api_v1_users_me_videos_video_id_rating { label: "Get rate of my user for a video" provider: cpy method: GET path: "/api/v1/users/me/videos/{videoId}/rating" encoding: json input: { type: "object" properties: { videoId: { description: "object id for the video" type: "object" } } required: ["videoId"] additionalProperties: false } output: { required: ["id", "rating"] properties: { id: { type: "integer" } rating: { type: "string" description: "Rating of the video" enum: ["like", "dislike", "none"] } } } }