Last updated 3 years ago
DELETE https://api.complycube.com/v1/livePhotos/:id
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.
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($id);
id
string
The ID of the live photo.
Authorization
The live or sandbox API key.