action cpy_create_video_transcoding { label: "Create a transcoding job" provider: cpy method: POST path: "/api/v1/videos/{id}/transcoding" encoding: json input: { type: "object" required: ["transcodingType"] properties: { transcodingType: { type: "string" enum: ["hls", "webtorrent"] } } } output: { type: "object" additionalProperties: true } }