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.
Name | Type | Description |
---|
| | The API live or test key. |
Path parameters
Name | Type | Description |
---|
| | The ID of the live video. |
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
Last updated