Below is a list of attributes available for webhooks.
Example - Get all enabled webhooks for one event type
In the example below, we will request to get all enabled webhooks for completed clear checks.
curl -X GET https://api.complycube.com/v1/webhooks?enabled=true&events=check.completed.clear \
-H 'Authorization: <YOUR_API_KEY>'
from complycube import ComplyCubeClient
cc_api = ComplyCubeClient(api_key='<YOUR API KEY>')
filtered = cc_api.webhooks.list(enabled=True)
use ComplyCube\ComplyCubeClient;
$ccapi = new ComplyCubeClient('<YOUR API KEY>');
$webhooks = $ccapi->webhooks()->list([enabled => true]);