action cpy_get_api_v1_users_me_video_playlists_videos_exist { label: "Check video exists in my playlists" provider: cpy method: GET path: "/api/v1/users/me/video-playlists/videos-exist" encoding: json input: { type: "object" properties: { videoIds: { type: "array" items: { description: "object id for the video" type: "object" } } } required: ["videoIds"] additionalProperties: false } output: { type: "object" properties: { videoId: { type: "array" items: { type: "object" properties: { playlistElementId: { type: "integer" } playlistId: { type: "integer" } startTimestamp: { type: "integer" format: "seconds" } stopTimestamp: { type: "integer" } } } } } } }