URL
DELETE https://api.complycube.com/v1/livePhotos/:id
Deletes an existing live photo.
You will not be able to delete a live photo once used to perform a check.
The API live
or test
key.
Path parameters
The ID of the live photo.
Example request
curl -X DELETE https://api.complycube.com/v1/livePhotos/{:livePhotoId} \
-H 'Authorization: <YOUR_API_KEY>'
const { ComplyCube } = require("@complycube/api");
const complycube = new ComplyCube({ apiKey: "<YOUR_API_KEY>" });
await complycube.livePhoto.delete("LIVE_PHOTO_ID");
from complycube import ComplyCubeClient
cc_api = ComplyCubeClient(api_key='<YOUR_API_KEY>')
cc_api.livephotos.delete('LIVE_PHOTO_ID')
use ComplyCube\ComplyCubeClient;
$ccapi = new ComplyCubeClient('<YOUR_API_KEY>');
$ccapi->livephotos()->delete("LIVE_PHOTO_ID");
using ComplyCube.Net;
using ComplyCube.Net.Resources.LivePhotos;
var livePhotoApi = new LivePhotoApi(new ComplyCubeClient("<YOUR_API_KEY>"));
await livePhotoApi.DeleteAsync("LIVE_PHOTO_ID");
Example response
Last updated