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