Below is a list of attributes available for filtering 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]);
using ComplyCube.Net;
using ComplyCube.Net.Resources.Webhooks;
var webhookApi = new WebhookApi(new ComplyCubeClient("<YOUR_API_KEY>"));
var webhooks = await webhookApi.ListAsync(new WebhookRequest { enabled = true });
Last updated