# Get a biller's verifications Returns the biller's verification history, latest first. checks[] is ordered and open. Checks may be added, removed or reordered, so an integration must not switch exhaustively on key or fail on an unrecognised one. A check that does not apply to a biller is left out of the list rather than sent with a status. A missing key means only that Adfin is not asking this biller for it right now. Endpoint: GET /billers/{billerId}/verifications Version: 1.0.0 Security: Biller Access Token (Production), Biller Access Token (Staging) ## Path parameters: - `billerId` (string, required) ## Response 200 fields (application/json): - `verifications` (array, required) The biller's verification history, latest first. - `verifications.verificationId` (string, required) The unique identifier of the verification. - `verifications.type` (string, required) The type of verification. Enum: "ONBOARDING", "REVERIFICATION" - `verifications.status` (string, required) The overall status, rolled up from the checks. Enum: "NOT_STARTED", "OUTSTANDING", "COMPLETED", "IN_REVIEW", "ACTION_REQUIRED", "APPROVED", "REJECTED", "SUSPENDED" - `verifications.waitingOn` (string) Who has to act next. Omitted when nobody has to act. Enum: "BILLER", "ADFIN" - `verifications.creationTime` (string, required) When the verification was created. - `verifications.checks` (array, required) The checks that make up the verification, in the order a biller works through them. - `verifications.checks.key` (string, required) What this check covers. Enum: "BUSINESS_DETAILS", "BUSINESS_ADDRESS", "DOCUMENTS", "BANK_ACCOUNT", "DECISION_MAKERS", "IDENTITY_VERIFICATION", "TERMS_AND_CONDITIONS", "DIRECT_DEBIT_REVIEW" - `verifications.checks.status` (string, required) The status of this check. Enum: "NOT_STARTED", "OUTSTANDING", "COMPLETED", "IN_REVIEW", "ACTION_REQUIRED", "APPROVED", "REJECTED", "SUSPENDED" - `verifications.checks.waitingOn` (string) Who has to act on this check. Omitted when nobody has to act. Enum: "BILLER", "ADFIN" - `verifications.checks.detail` (string) Information on why the check is in this status. ## Response 401 fields ## Response 404 fields ## Response 500 fields