Delete live video
URL
Headers
Name
Type
Description
Path parameters
Name
Type
Description
Example request
curl -X DELETE https://api.complycube.com/v1/liveVideos/{:liveVideooId} \
-H 'Authorization: <YOUR_API_KEY>'const { ComplyCube } = require("@complycube/api");
const complycube = new ComplyCube({ apiKey: "<YOUR_API_KEY>" });
await complycube.liveVideo.delete("LIVE_VIDEO_ID");from complycube import ComplyCubeClient
cc_api = ComplyCubeClient(api_key='<YOUR_API_KEY>')
ccapi.livevideos.delete(videoid)use ComplyCube\ComplyCubeClient;
$ccapi = new ComplyCubeClient('<YOUR_API_KEY>');
$ccapi->livevideos()->delete('LIVE_VIDEO_ID');using ComplyCube.Net;
using ComplyCube.Net.Resources.Clients;
var videoApi = new liveVideoApi(new ComplyCubeClient("<YOUR_API_KEY>"));
videoApi.DeleteAsync("LIVE_VIDEO_ID").Wait();Example response

