Last updated 7 months ago
DELETE https://api.complycube.com/v1/liveVideos/:id
https://api.complycube.com/v1/liveVideos/:id
Deletes an existing live video. You will not be able to delete a live video once used to perform a check.
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();
Authorization*
Authorization
string
The API live or test key.
live
test
id*
id
The ID of the live video.