> ## Documentation Index
> Fetch the complete documentation index at: https://docs.getscale.ng/llms.txt
> Use this file to discover all available pages before exploring further.

# Resolve Bank Account

Verifies bank account details dynamically, returning the authenticated account name to ensure secure payments.

### Query Parameters

<ParamField query="bankCode" type="string" required>
  The unique clearing code of the target bank (e.g. `058`).
</ParamField>

<ParamField query="accountNumber" type="string" required>
  The 10-digit NUBAN account number.
</ParamField>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "status": "success",
    "data": {
      "accountNumber": "0123456789",
      "accountName": "JOHN DOE"
    }
  }
  ```

  ```json 400 Bad Request theme={null}
  {
    "message": "FORM_VALIDATION_ERROR",
    "code": 400,
    "validationErrors": [
      {
        "path": [
          "accountNumber"
        ],
        "message": "Account number must be exactly 10 digits"
      }
    ]
  }
  ```
</ResponseExample>
