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

# Ajouter un compte bancaire de retrait



## OpenAPI

````yaml openapi.fr.json post /v1/payout-accounts
openapi: 3.0.0
info:
  title: Inflow API
  version: 1.0.0
  description: Service d'API pour la gestion des cartes clients
  contact:
    name: API Support
servers:
  - url: https://sandbox.inflowafrica.com/api
    description: Bac à sable
  - url: https://app.inflowpay.net/api
    description: Production
  - url: http://localhost:3000/api
    description: Local
security:
  - bearerAuthFr: []
tags: []
paths:
  /v1/payout-accounts:
    post:
      tags:
        - External API - Payouts
      summary: Ajouter un compte bancaire de retrait
      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: >-
                    Utilisez bank_account pour les comptes bancaires (ou
                    omettez), mobile_money pour le mobile money, ou gtw_wallet
                    pour payer un utilisateur GlobalTravelWallet avec son
                    publicId à 10 caractères dans accountNumber.
                accountNumber:
                  type: string
                  description: Numéro de compte bancaire ou MSISDN pour le mobile money
                bankCode:
                  type: string
                  description: >-
                    Code bancaire/CBN ou opérateur mobile money (par ex.
                    MTN_MOMO_ZMB)
                institutionId:
                  type: string
                  description: >-
                    Identifiant d'établissement Gravv (mobile money / banque
                    multi-devises)
                iban:
                  type: string
                bic:
                  type: string
                routingNumber:
                  type: string
                  description: Code de routage US ou sort code UK
                country:
                  type: string
      responses:
        '201':
          description: Bénéficiaire créé
        '400':
          description: Erreur de validation
      security:
        - apiKeyAuthFr: []
components:
  securitySchemes:
    bearerAuthFr:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Saisissez le jeton JWT
    apiKeyAuthFr:
      type: http
      scheme: bearer
      description: Saisissez votre clé API commençant par gtw_sk_

````