For the complete documentation index, see llms.txt. This page is also available as Markdown.

Delete live video

URL

DELETE 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.

Headers

Name
Type
Description

Authorization*

string

The API live or test key.

Path parameters

Name
Type
Description

id*

string

The ID of the live video.

Example request

curl -X DELETE https://api.complycube.com/v1/liveVideos/{:liveVideoId} \
     -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