Delete a webhook
Delete a webhook
DELETE https://api.complycube.com/v1/webooks/:id
Delete an existing a webhook
Path Parameters
Name
Type
Description
id
string
The ID of the webhook.
Headers
Name
Type
Description
Authorization
string
The live or sandbox API key.
Example request
curl -X DELETE https://api.complycube.com/v1/webhooks/{:webhookId} \
-H 'Authorization: <YOUR_API_KEY>'const { ComplyCube } = require("@complycube/api");
const complycube = new ComplyCube({ apiKey: "<YOUR_API_KEY>" });
await complycube.webhook.delete("WEBHOOK_ID")from complycube import ComplyCubeClient
cc_api = ComplyCubeClient(api_key='<YOUR API KEY>')
cc_api.webhooks.delete('WEBHOOK_ID')use ComplyCube\ComplyCubeClient;
$ccapi = new ComplyCubeClient('<YOUR API KEY>');
$ccapi->webhooks()->delete('WEBHOOK_ID');Last updated
Was this helpful?