action cpy_get_video_blocks { label: "List video blocks" provider: cpy method: GET path: "/api/v1/videos/blacklist" encoding: json input: { type: "object" properties: { search: { type: "string" } type: { type: "integer" enum: [1, 2] } } additionalProperties: false } output: { type: "object" properties: { data: { type: "array" items: { properties: { createdAt: { type: "string" format: "date-time" } description: { type: "string" } dislikes: { type: "integer" } duration: { type: "integer" } id: { type: "integer" } likes: { type: "integer" } name: { type: "string" } nsfw: { type: "boolean" } updatedAt: { type: "string" format: "date-time" } uuid: { type: "string" format: "uuid" } videoId: { description: "object id for the video" type: "object" } views: { type: "integer" } } } } total: { type: "integer" } } } }