For the complete documentation index, see llms.txt. This page is also available as Markdown.

Delete a client

URL

DELETE https://api.complycube.com/v1/clients/:id

Deletes an existing client.

Headers

Name
Type
Description

Authorization*

string

The API live or test key.

Path parameters

Name
Type
Description

id*

string

The ID of the client.

Example request

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('CLIENT_ID');
using ComplyCube.Net;
using ComplyCube.Net.Resources.Clients;

var clientApi = new ClientApi(new ComplyCubeClient("<YOUR_API_KEY>"));

await clientApi.DeleteAsync("CLIENT_ID");

Example response