Last updated 8 months ago
DELETE https://api.complycube.com/v1/clients/:id
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);
using ComplyCube.Net; using ComplyCube.Net.Resources.Clients; var clientApi = new ClientApi(new ComplyCubeClient("<YOUR_API_KEY>")); await clientApi.DeleteAsync("CLIENT_ID");
Authorization*
Authorization
string
The API live or test key.
live
test
id*
id
The ID of the client.