action cpy_add_video_channel { label: "Create a video channel" provider: cpy method: POST path: "/api/v1/video-channels" encoding: json input: { required: ["displayName", "name"] type: "object" } output: { type: "object" properties: { videoChannel: { type: "object" properties: { id: { type: "integer" } } } } } }