Below is a list of attributes available for filtering checks.
Example - Get all checks for one type
In the example below, we will request to get all checks that are of type document_check
.
curl -X GET https://api.complycube.com/v1/checks?type=document_check \
-H 'Authorization: <YOUR_API_KEY>'
from complycube import ComplyCubeClient
cc_api = ComplyCubeClient(api_key='<YOUR_API_KEY>')
doc_checks = cc_api.checks.list(type='document_check')
use ComplyCube\ComplyCubeClient;
$ccapi = new ComplyCubeClient('<YOUR_API_KEY>');
$doc_checks = $ccapi->checks()->list(['type' => 'document_check']);
using ComplyCube.Net;
using ComplyCube.Net.Resources.Checks;
var checkApi = new CheckApi(new ComplyCubeClient("<YOUR_API_KEY>"));
var filter = new CheckRequest { type = "document_check" }
var docChecks = await checkApi.ListAsync(filter);
Last updated