> ## 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.

# Add payout bank account



## OpenAPI

````yaml openapi.json post /v1/payout-accounts
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:
    post:
      tags:
        - External API - Payouts
      summary: Add payout bank account
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - currency
                - accountName
              properties:
                currency:
                  type: string
                  example: ZMW
                accountName:
                  type: string
                accountType:
                  type: string
                  enum:
                    - bank_account
                    - mobile_money
                    - gtw_wallet
                  description: >-
                    Use bank_account for bank accounts (or omit), mobile_money
                    for mobile money, or gtw_wallet to pay a GlobalTravelWallet
                    user with their 10-character publicId in accountNumber.
                accountNumber:
                  type: string
                  description: Bank account number, or MSISDN for mobile money
                bankCode:
                  type: string
                  description: Bank/CBN code, or mobile money operator (e.g. MTN_MOMO_ZMB)
                institutionId:
                  type: string
                  description: Institution id (cross-currency mobile money / bank)
                iban:
                  type: string
                bic:
                  type: string
                routingNumber:
                  type: string
                  description: US routing or UK sort code
                country:
                  type: string
      responses:
        '201':
          description: Beneficiary created
        '400':
          description: Validation error
      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_

````