---
title: "AccountVerificationDetailDto"
url: "https://developer.pexa.co.uk/apis/financials-v1-v1/versions/5cb0c2f5-c5c3-45e5-9a20-009908d7f57b/schemas/AccountVerificationDetailDto"
---

> Full API specification: https://developer.pexa.co.uk/apis/financials-v1-v1/versions/5cb0c2f5-c5c3-45e5-9a20-009908d7f57b.md

# AccountVerificationDetailDto

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Financial
  version: v1.1.0
servers:
  - url: https://api.pexa.co.uk
    description: API Gateway URL
components:
  schemas:
    AccountVerificationDetailDto:
      type: object
      nullable: true
      properties:
        status:
          type: string
          pattern: ^(MATCH|NAME_PARTIAL_MATCH|NAME_PARTIAL_MATCH_TYPE_NO_MATCH|NO_MATCH|UNABLE_TO_MATCH|ERROR|TIMEOUT|TYPE_NO_MATCH|ACCOUNT_VERIFICATION_NOT_RUN)$
          example: NAME_PARTIAL_MATCH
          description: >
            status of account verification Allowed Values: [ `MATCH`,
            `NAME_PARTIAL_MATCH`, `NAME_PARTIAL_MATCH_TYPE_NO_MATCH`,
            `NO_MATCH`, `UNABLE_TO_MATCH`, `ERROR`, `TIMEOUT`, `TYPE_NO_MATCH`,
            `ACCOUNT_VERIFICATION_NOT_RUN` ]
        partnerReasonCode:
          type: string
          nullable: true
          description: |
            Reason code sent from third party system for account verification.

            | Code |                Description                   |
            | -------|----------------------------------|
            | ANNM | Account Name does Not Match |
            | MBAM | There may be a match on the Account name |
            | BANM | Business account, name matches |
            | PANM | Personal account, name matches |
            | BAMM | Business account, name may be a match |
            | PAMM | Personal account, name may be a match |
            | AC01 | Incorrect Account Number |
            | IVCR | Invalid Customer Reference |
            | ACNS | Account type Not Supported for CoP |
            | OPTO | Opted out of CoP Scheme |
            | CASS | Account has been switched |
            | SCNS | Sort code not supported at endpoint |
        verified:
          type: boolean
          description: denotes in the account details are verified
        acceptedAt:
          type: string
          nullable: true
          format: date-time
          description: timestamp recorded when the consent was given for the account
        acceptedBy:
          type: string
          nullable: true
          description: id of the user who gave the consent for the account
        actualName:
          type: string
          nullable: true
          description: Actual name of given account received from CoP in case of partial
            match
        isManualOverrideAllowed:
          type: boolean
          description: Flag to indicate if manual override is allowed
```
