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

# Resolve NGN offramp account name

> Resolves the account holder name for a Nigerian bank account via
PayCrest `verify-account`, keyed by a `bankCode` from
`GET /rails/banks`. Returns `422` if the account cannot be verified or
the bank is unsupported. Requires `transfers:read`.




## OpenAPI

````yaml /openapi.yaml post /rails/offramps/resolve-account
openapi: 3.1.0
info:
  title: Remitflex API
  version: 1.0.0
  description: >
    Programmatic access to Remitflex payment routes, fiat rates, customers, and
    transactions.


    **Dashboard:** Create API keys at https://dashboard.remitflex.io


    **Authentication:** Send your API key as `Authorization: Bearer
    rmf_live_...` or `rmf_test_...`.


    **Idempotency:** Mutating requests (`POST`, `PUT`, `PATCH`, `DELETE`)
    require an `Idempotency-Key` header when authenticated with an API key.
servers:
  - url: http://localhost:4000/v1
    description: Local development
  - url: https://api.remitflex.io/v1
    description: Production
security:
  - ApiKeyAuth: []
paths:
  /rails/offramps/resolve-account:
    post:
      tags:
        - NGN rails
      summary: Resolve NGN offramp account name
      description: |
        Resolves the account holder name for a Nigerian bank account via
        PayCrest `verify-account`, keyed by a `bankCode` from
        `GET /rails/banks`. Returns `422` if the account cannot be verified or
        the bank is unsupported. Requires `transfers:read`.
      operationId: resolveRailsOfframpAccount
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - accountNumber
                - bankCode
              properties:
                accountNumber:
                  type: string
                bankCode:
                  type: string
            example:
              accountNumber: '0123456789'
              bankCode: '058'
      responses:
        '200':
          description: Account resolved
          content:
            application/json:
              example:
                accountName: JOHN DOE
                bankName: GTBank
                bankCode: '058'
        '422':
          description: Account could not be verified
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: http
      scheme: bearer
      description: >
        API key created in the Remitflex Dashboard at dashboard.remitflex.io
        (`rmf_live_...` or `rmf_test_...`).

        Key management endpoints require a dashboard JWT and are not part of
        this reference.

````