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

> ## Agent Instructions
> Money amounts are always major-unit decimal strings (e.g. "1000.00"), never floats and never minor units, in every request, response, and webhook payload.
> Authentication is OAuth 2.0 client credentials: exchange the Client ID and Client Secret at the Token URL for a 24-hour JWT and cache it; do not request a token per call.
> Set a unique clientRef on every money-moving request; it is the idempotency key, and retries return the original resource.
> Quotes are single-use, intent-locked, and expire fast: always read expiresAt, consume the quote with the executor matching its intent, and re-quote on expiry instead of retrying.
> Prefer webhooks over polling for payout, order, and deposit status tracking.
> Use the sandbox (api.sandbox.zuba.com) with its deterministic magic values before touching production.

# List persons on an application



## OpenAPI

````yaml /openapi.json get /v2/applications/{applicationId}/persons
openapi: 3.0.0
info:
  contact: {}
  description: >-
    Comprehensive payment platform API supporting fiat and crypto payments,
    currency conversion, and compliance management
  title: Zuba Payment Platform API
  version: '1.0'
servers: []
security: []
tags:
  - description: Manage M2M API keys and credentials
    name: API Keys
  - description: Internal ledger accounts and transactions
    name: Ledger
  - description: Handle incoming payments and deposits
    name: Pay-ins
  - description: Manage payouts, beneficiaries, and SEPA transfers
    name: Payouts
  - description: Manage outbound webhook endpoints and deliveries
    name: Webhooks
paths:
  /v2/applications/{applicationId}/persons:
    get:
      tags:
        - Applications (v2)
      summary: List persons on an application
      operationId: ApplicationPersonV2Controller_list
      parameters:
        - in: path
          name: applicationId
          required: true
          schema:
            format: uuid
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/PersonRecordDto'
                type: array
          description: ''
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericErrorResponseDto'
          description: ''
        '404':
          description: Not found
      security:
        - bearer: []
components:
  schemas:
    PersonRecordDto:
      properties:
        bvn:
          description: Bank Verification Number (Nigeria).
          type: string
        dateOfBirth:
          example: '1985-06-15'
          format: date
          type: string
        emailAddress:
          format: email
          type: string
        firstName:
          type: string
        id:
          format: uuid
          type: string
        lastName:
          type: string
        middleName:
          type: string
        nationalId:
          type: string
        nationality:
          description: ISO 3166-1 alpha-2 country code
          type: string
        ownershipPercentage:
          maximum: 100
          minimum: 0
          type: number
        phoneNumber:
          type: string
        residentialAddress:
          $ref: '#/components/schemas/AddressDto'
        role:
          enum:
            - director
            - shareholder
            - director_and_shareholder
            - signing_officer
          type: string
        title:
          type: string
      required:
        - role
        - firstName
        - lastName
        - dateOfBirth
        - nationality
        - title
        - emailAddress
        - phoneNumber
        - residentialAddress
        - id
      type: object
    GenericErrorResponseDto:
      properties:
        error:
          description: Error type identifier
          example: BAD_REQUEST
          type: string
        message:
          description: Error message
          example: Bad Request
          type: string
        path:
          description: Request path that generated the error
          example: /v1/beneficiaries
          type: string
        statusCode:
          description: HTTP status code
          example: 400
          type: number
        timestamp:
          description: ISO timestamp when the error occurred
          example: '2024-01-15T10:30:00.000Z'
          type: string
      required:
        - statusCode
        - message
        - error
        - timestamp
        - path
      type: object
    AddressDto:
      properties:
        city:
          type: string
        country:
          description: ISO 3166-1 alpha-2
          type: string
        postalCode:
          type: string
        state:
          type: string
        street:
          type: string
      required:
        - street
        - city
        - state
        - postalCode
        - country
      type: object
  securitySchemes:
    bearer:
      bearerFormat: JWT
      description: Enter Auth0 JWT token
      scheme: bearer
      type: http

````