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

# Resolve a bank account or mobile-money wallet

> Verifies a destination and returns its account name without creating a payout beneficiary. Use the provider identifiers returned by GET /v1/payouts/providers.



## OpenAPI

````yaml openapi.json post /v1/payout-accounts/resolve
openapi: 3.0.0
info:
  title: Inflow API
  version: 1.0.0
  description: API service for managing customer cards
  contact:
    name: API Support
servers:
  - url: https://sandbox.inflowafrica.com/api
    description: Sandbox
  - url: https://app.inflowpay.net/api
    description: Production
  - url: http://localhost:3000/api
    description: Local
security:
  - bearerAuth: []
tags: []
paths:
  /v1/payout-accounts/resolve:
    post:
      tags:
        - External API - Payouts
      summary: Resolve a bank account or mobile-money wallet
      description: >-
        Verifies a destination and returns its account name without creating a
        payout beneficiary. Use the provider identifiers returned by GET
        /v1/payouts/providers.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - accountNumber
              properties:
                accountType:
                  type: string
                  enum:
                    - bank_account
                    - mobile_money
                  default: bank_account
                accountNumber:
                  type: string
                  description: Bank account number or mobile-wallet MSISDN
                currency:
                  type: string
                  example: NGN
                country:
                  type: string
                  example: NG
                  description: ISO 3166-1 alpha-2 country code
                bankCode:
                  type: string
                  description: Required for Nigerian bank accounts
                institutionId:
                  type: string
                  description: >-
                    Required for mobile wallets; obtain it from GET
                    /v1/payouts/providers
                routingNumber:
                  type: string
                  description: Routing number or sort code when required by the bank rail
      responses:
        '200':
          description: Account resolved
        '400':
          description: Invalid or incomplete request
        '422':
          description: Account details were valid but could not be resolved
        '502':
          description: Account-verification provider unavailable
      security:
        - apiKeyAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Enter JWT token
    apiKeyAuth:
      type: http
      scheme: bearer
      description: Enter your API key starting with gtw_sk_

````