action cpy_add_video_channel_sync { label: "Create a synchronization for a video channel" provider: cpy method: POST path: "/api/v1/video-channel-syncs" encoding: json input: { type: "object" properties: { externalChannelUrl: { type: "string" } videoChannelId: { type: "integer" } } } output: { type: "object" properties: { videoChannelSync: { type: "object" properties: { channel: { type: "object" } createdAt: { type: "string" format: "date-time" } externalChannelUrl: { type: "string" } id: { type: "integer" } lastSyncAt: { type: "string" format: "date-time" } state: { type: "object" properties: { id: { type: "integer" } label: { type: "string" } } } } } } } }