Skip to main content

Validation suite tests for standard responses

Your integration is tested to see if it returns valid responses to normal requests.

When the validation suite expects a standard response, using demo data, the demo_result value is set to ANY. When the demo_result value is set to ANY, your integration must provide any valid response, which depends on your check type, but the response doesn't need to be related to the request, and so a hard-coded response can be used.

The following is an example response to a demo_result value of ANY for the COMPANY_CUSTOM or INDIVIDUAL_CUSTOM check type:

{
  "errors": [],
  "warnings": [],
  "result": {
    "decision": "PASS",
    "summary": "Demo result summary."
  }
}

Additional information