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

# Lister les paiements

> Récupère une liste paginée des paiements de l'organisation.



## OpenAPI

````yaml openapi.fr.json get /v1/payments
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/payments:
    get:
      tags:
        - External API - Payments
      summary: Lister les paiements
      description: Récupère une liste paginée des paiements de l'organisation.
      parameters:
        - in: query
          name: page
          schema:
            type: integer
            default: 1
        - in: query
          name: limit
          schema:
            type: integer
            default: 20
        - in: query
          name: status
          schema:
            type: string
            enum:
              - created
              - pending
              - authorising
              - initiated
              - executed
              - settled
              - failed
              - cancelled
              - expired
        - in: query
          name: customerId
          schema:
            type: string
            format: uuid
          description: >-
            Identifiant de client facultatif pour filtrer les paiements par
            client.
      responses:
        '200':
          description: Liste paginée des paiements
      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_

````