Delete a live photo
Delete a live photo
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.
Path Parameters
Name
Type
Description
id
string
The ID of the live photo.
Headers
Name
Type
Description
Authorization
string
The live or sandbox API key.
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($id);Last updated
Was this helpful?
