action cpy_get_api_v1_videos_id_live_session { label: "Get live session of a replay" description: "If the video is a replay of a live, you can find the associated live session using this endpoint" provider: cpy method: GET path: "/api/v1/videos/{id}/live-session" encoding: json output: { properties: { endDate: { type: "string" format: "date-time" description: "End date of the live session" } error: { type: "integer" description: "Error type if an error occurred during the live session:\n - `1`: Bad socket health (transcoding is too slow)\n - `2`: Max duration exceeded\n - `3`: Quota exceeded\n - `4`: Quota FFmpeg error\n - `5`: Video has been blacklisted during the live\n" enum: [1, 2, 3, 4, 5] } id: { type: "integer" } replayVideo: { type: "object" description: "Video replay information" properties: { id: { type: "number" } shortUUID: { type: "string" description: "translation of a uuid v4 with a bigger alphabet to have a shorter uuid" } uuid: { type: "string" format: "uuid" } } } startDate: { type: "string" format: "date-time" description: "Start date of the live session" } } } }