Filtering checks
Below is a list of attributes available for filtering checks.
Attribute
Type
clientId
string
type
string
status
string
documentId
string
livePhotoId
string
result.outcome
string
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>')
check_list = cc_api.checks.list(type='document_check')use ComplyCube\ComplyCubeClient;
$ccapi = new ComplyCubeClient('<YOUR API KEY>');
$doc_checks = $ccapi->checks()->list(['type' => 'document_check']);Last updated
Was this helpful?