Checks

Recommend additions to a check stack

POST
/api/v1/checks/recommendations

Given a proposed stack, returns checks worth adding — prerequisites you are missing and checks commonly run alongside what you selected.

Authorization

AuthorizationBearer <token>

Use Authorization: Bearer vrf_live_... or vrf_test_....

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/api/v1/checks/recommendations" \  -H "Content-Type: application/json" \  -d '{    "subjectType": "INDIVIDUAL",    "checkNames": [      "KRA_PIN"    ],    "purpose": "Employment screening"  }'
{  "recommended": [    "IDENTITY"  ],  "warnings": [    "string"  ]}