action cpy_search_channels { label: "Search channels" provider: cpy method: GET path: "/api/v1/search/video-channels" encoding: json input: { type: "object" properties: { search: { type: "string" } } required: ["search"] additionalProperties: false } output: { properties: { data: { type: "array" items: { type: "object" } } total: { type: "integer" } } } }