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

# Collecter la mini-place de marché transparente d'un contributeur (contrat v2)



## OpenAPI

````yaml /openapi.json get /api/v2/contributors/{referenceContributor}/transparent-mmp
openapi: 3.0.3
info:
  title: Registre des APIs GIM Gar Sud
  version: 1.0.9-sdk0.3.0
  description: >
    APIs exposées par GIM Gar Sud pour permettre aux Contributeurs Tiers de
    Service Financier (CTSF) de consommer les services de GIMpay : enrôlement
    d'usagers et d'instruments de paiement, opérations financières, OTP,
    consentements, documents d'identité et fidélité.
  contact:
    name: Support intégrateurs GimPay
    email: support@it-centrex.com
servers:
  - url: https://egimgarsud.gimpayapp.com
    variables:
      environnement:
        default: egimgarsud
        description: Sous-domaine de l'environnement (sandbox ou production).
security:
  - bearerAuth: []
tags:
  - name: Authentification
  - name: Wallets
    description: Instruments de paiement (cartes, comptes bancaires, mobile wallets)
  - name: Opérations
  - name: OTP
  - name: Usagers
  - name: Bénéficiaires
  - name: MMP favorites
  - name: Pays
  - name: Contributeurs
  - name: Mini-places de marché
  - name: Services
  - name: Terminaux
  - name: Documents
  - name: Consentements & demandes
paths:
  /api/v2/contributors/{referenceContributor}/transparent-mmp:
    get:
      tags:
        - Contributeurs
      summary: >-
        Collecter la mini-place de marché transparente d'un contributeur
        (contrat v2)
      operationId: getTransparentMmp
      parameters:
        - $ref: '#/components/parameters/ReferenceContributor'
        - name: referenceContributor
          in: path
          description: Référence du contributeur
          required: true
          schema:
            type: string
          example: CONTRIBUTOR-00001
      responses:
        '200':
          description: MMP transparente récupérée.
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/ApiEnvelope'
                  - type: object
                    properties:
                      body:
                        $ref: '#/components/schemas/TransparentMmpResponse'
        '400':
          $ref: '#/components/responses/Error400'
        '401':
          $ref: '#/components/responses/Error401'
        '500':
          $ref: '#/components/responses/Error500'
components:
  parameters:
    ReferenceContributor:
      name: referenceContributor
      in: path
      required: true
      description: Référence du contributeur.
      schema:
        type: string
        example: CONTRIB250506-192636-360
  schemas:
    ApiEnvelope:
      type: object
      description: Enveloppe standard de toutes les réponses (sauf auth).
      properties:
        message:
          type: string
          description: Message technique décrivant le résultat de l'appel.
        status:
          type: integer
          description: Code de statut HTTP de la réponse.
        timestamp:
          type: string
          format: date-time
          description: Horodatage de la réponse.
    TransparentMmpResponse:
      type: object
      description: Backend `MmpTransparenteResponse2`.
      properties:
        libelle:
          type: string
          description: Libellé de l'opération
        description:
          type: string
        urlLogo:
          type: string
        statutMmp:
          $ref: '#/components/schemas/StatutMmp'
        typeMmp:
          $ref: '#/components/schemas/TypeMmp'
        referenceMmp:
          type: string
        servicesType:
          type: array
          items:
            $ref: '#/components/schemas/ServiceTypeResponse'
    StatutMmp:
      type: string
      enum:
        - ACTIVE
        - INACTIVE
        - INITIEE
    TypeMmp:
      type: string
      enum:
        - REMITTANCE
        - PRODUITS_SERVICES
        - BANQUE
        - TRANSPORT
        - ASSURANCE
        - MOBILE_WALLET
        - VTC
        - SERVICE_FINANCIER
        - SERVICE_MOBILE
    ServiceTypeResponse:
      type: object
      description: Backend `ServiceTypeResponse2`.
      properties:
        libelle:
          type: string
          description: Libellé de l'opération
        description:
          type: string
        urlLogo:
          type: string
        statutServiceType:
          $ref: '#/components/schemas/StatutServiceType'
        reference:
          type: string
          description: Référence unique de la demande.
    ErrorEnvelope:
      allOf:
        - $ref: '#/components/schemas/ApiEnvelope'
        - type: object
          properties:
            body:
              nullable: true
    StatutServiceType:
      type: string
      enum:
        - ACTIF
        - INACTIF
  responses:
    Error400:
      description: Requête invalide (champ manquant ou mal formé).
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorEnvelope'
    Error401:
      description: Non autorisé — jeton manquant, invalide ou expiré.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorEnvelope'
    Error500:
      description: Erreur interne du serveur.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorEnvelope'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Jeton émis par `POST /api/v1/auth/token`.

````