cURL
curl --request POST \ --url https://bgv.konnectnxt.com/api/v2/verification/global-db/initiate/ \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "search_term": "John Doe", "group_id": "grp_12345", "version": "2" } '
{ "status": "success", "code": 201, "message": "Operation completed successfully", "data": { "task_id": "550e8400-e29b-41d4-a716-446655440000", "group_id": "grp_12345", "request_id": "1f07d2de-f113-43f5-9613-43d4897cb493", "status": "in_progress" }, "credits_used": 10, "credits_remaining": 90 }
Initiate Global DB check for the given search term(Name of an individual.)
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Name or entity to be screened
"John Doe"
Optional group identifier
"grp_12345"
Vendor API version
"2"
Screening initiated successfully
"success"
201
"Operation completed successfully"
Show child attributes
10
90
Was this page helpful?