Last updated 3 years ago
DELETE https://api.complycube.com/v1/clients/:id
DELETE
https://api.complycube.com/v1/clients/:id
Deletes an existing client.
curl -X DELETE https://api.complycube.com/v1/clients/{:clientId} \ -H 'Authorization: <YOUR_API_KEY>'
const { ComplyCube } = require("@complycube/api"); const complycube = new ComplyCube({ apiKey: "<YOUR_API_KEY>" }); await complycube.client.delete("CLIENT_ID");
from complycube import ComplyCubeClient cc_api = ComplyCubeClient(api_key='<YOUR API KEY>') cc_api.clients.delete('CLIENT_ID')
use ComplyCube\ComplyCubeClient; $ccapi = new ComplyCubeClient('<YOUR API KEY>'); $ccapi->clients()->delete($id);
id
string
The ID of the client.
Authorization
The live or sandbox API key.