Update a webhook
URL
Headers
Name
Type
Description
Path parameters
Name
Type
Description
Body
Name
Type
Description
Example request
curl -X POST https://api.complycube.com/v1/webhooks \
-H 'Authorization: <YOUR_API_KEY>' \
-H 'Content-Type: application/json' \
-d '{
"id": "WEBHOOK_ID",
"description": "updated description"
}'const { ComplyCube } = require("@complycube/api");
const complycube = new ComplyCube({ apiKey: "<YOUR_API_KEY>" });
const webhook = await complycube.webhook.update("WEBHOOK_ID", {
description: "updated description"
});from complycube import ComplyCubeClient
cc_api = ComplyCubeClient(api_key='<YOUR_API_KEY>')
webhook = cc_api.webhooks.update('WEBHOOK_ID', description="updated description")use ComplyCube\ComplyCubeClient;
$ccapi = new ComplyCubeClient('<YOUR_API_KEY>');
$webhook = $ccapi->webhooks()->update('WEBHOOK_ID', [
'description' => 'updated description'
]);
