action cpy_get_video_captions { label: "List captions of a video" provider: cpy method: GET path: "/api/v1/videos/{id}/captions" encoding: json output: { type: "object" properties: { data: { type: "array" items: { properties: { captionPath: { type: "string" } language: { properties: { id: { type: "string" description: "language id of the video (see [/videos/languages](#operation/getLanguages))" } label: { type: "string" } } } } } } total: { type: "integer" } } } }