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

# List business clients

> Returns the clients associated with the authenticated business.



## OpenAPI

````yaml /openapi-v2.en.yaml get /v2/business-clients
openapi: 3.0.0
info:
  title: YP API Partner
  description: Integration documentation for YP API partners.
  version: v2
  contact: {}
servers:
  - url: https://sandbox-rampa.mesadepagos.com/api
    description: Sandbox
security: []
tags:
  - name: Auth
    description: ''
  - name: Quotes
    description: ''
  - name: Payin
    description: ''
  - name: Payout
    description: ''
  - name: Wallet
    description: ''
  - name: Queries
    description: ''
  - name: Webhooks
    description: ''
  - name: Fees
    description: ''
  - name: Clients
    description: ''
paths:
  /v2/business-clients:
    get:
      tags:
        - Clients
      summary: List business clients
      description: Returns the clients associated with the authenticated business.
      operationId: getBusinessClient
      parameters: []
      responses:
        '200':
          description: Business clients.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BusinessClientResponseDoc'
        '401':
          description: Missing, invalid, or expired token.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthorizedResponseDoc'
      security:
        - bearer: []
components:
  schemas:
    BusinessClientResponseDoc:
      type: object
      properties:
        id:
          type: string
          example: 550e8400-e29b-41d4-a716-446655440000
          description: Internal client identifier.
          format: uuid
        name:
          type: string
          example: Acme Bolivia
          description: Client name.
        type:
          type: string
          enum:
            - individual
            - company
          example: company
          description: Client type.
        status:
          type: string
          enum:
            - Pending
            - Onboarding
            - Active
            - Rejected
            - Suspended
          example: Active
          description: Current client onboarding status.
        country:
          type: string
          example: BO
          description: Client country code.
        email:
          type: string
          example: client@example.com
          description: Client email address.
          format: email
        externalClientId:
          type: string
          example: null
          nullable: true
          description: >-
            Client identifier in the external provider. It is null while the
            relationship does not exist.
      required:
        - id
        - name
        - type
        - status
        - country
        - email
        - externalClientId
    UnauthorizedResponseDoc:
      type: object
      properties:
        statusCode:
          type: number
          example: 401
        message:
          type: string
          example: Unauthorized
      required:
        - statusCode
        - message
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http
      description: JWT obtained from /v2/auth/login

````