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

# List related persons

> Returns a paginated list of active related persons (officers and UBOs) for the company, ordered by creation date descending. Use the `status` query parameter to filter by verification status (comma-separated), or `id` to fetch a single person by ID. Related persons are automatically discovered during company verification.



## OpenAPI

````yaml /api-reference/openapi.json get /companies/{id}/related-persons/
openapi: 3.1.0
info:
  title: Reap API
  version: 1.0.0
  description: Reap platform API
servers:
  - url: https://sandbox.api.reap.global
    description: Sandbox
  - url: https://prod.api.reap.global
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Accounts
  - name: Activities
  - name: Card Designs
  - name: Card Shipments
  - name: Card Transactions
  - name: Cards
  - name: Companies
  - name: Crypto Deposits
  - name: Policies
  - name: Simulation
  - name: Users
  - name: Virtual Asset Postings
  - name: Virtual Assets
  - name: Webhooks
paths:
  /companies/{id}/related-persons/:
    get:
      tags:
        - Companies
      summary: List related persons
      description: >-
        Returns a paginated list of active related persons (officers and UBOs)
        for the company, ordered by creation date descending. Use the `status`
        query parameter to filter by verification status (comma-separated), or
        `id` to fetch a single person by ID. Related persons are automatically
        discovered during company verification.
      operationId: listRelatedPersons_companies
      parameters:
        - name: id
          in: path
          required: true
          schema:
            description: Company identifier
            type: string
            format: uuid
        - name: limit
          in: query
          required: false
          schema:
            default: 20
            examples:
              - 20
              - 50
              - 100
            description: 'Maximum number of items to return (1-100, default: 20)'
            type: integer
            exclusiveMinimum: 0
            maximum: 100
        - name: cursor
          in: query
          required: false
          schema:
            description: >-
              Opaque cursor for pagination. Pass nextCursor from previous
              response to get next page.
            type: string
        - name: id
          in: query
          required: false
          schema:
            description: Filter related persons by exact ID match
            type: string
            format: uuid
        - name: status
          in: query
          required: false
          schema:
            description: Filter related persons by verification status (comma-separated)
            type: array
            items:
              type: string
              enum:
                - NOT_STARTED
                - IN_REVIEW
                - APPROVED
                - REJECTED
              example: NOT_STARTED
        - name: Reap-Version
          in: header
          required: true
          schema:
            type: string
            enum:
              - '2025-02-14'
            description: API version (YYYY-MM-DD)
            example: '2025-02-14'
      responses:
        '200':
          description: Paginated list of related persons
          content:
            application/json:
              schema:
                type: object
                properties:
                  items:
                    type: array
                    items:
                      $ref: '#/components/schemas/RelatedPerson'
                      description: Related person resource
                  nextCursor:
                    anyOf:
                      - type: string
                      - type: 'null'
                    description: Cursor for next page, or null if no more items
                required:
                  - items
                  - nextCursor
        '404':
          description: Company not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                        const: COMPANY_NOT_FOUND
                      message:
                        type: string
                      detail:
                        anyOf:
                          - type: object
                            additionalProperties: {}
                          - type: 'null'
                    required:
                      - code
                      - message
                      - detail
                required:
                  - error
                title: CompanyNotFoundError
components:
  schemas:
    RelatedPerson:
      type: object
      properties:
        id:
          description: Unique related person identifier
          type: string
          format: uuid
        companyId:
          description: Company this person belongs to
          type: string
          format: uuid
        fullName:
          anyOf:
            - type: string
            - type: 'null'
          description: Full name of the person
        email:
          anyOf:
            - type: string
              format: email
              pattern: >-
                ^(?!\.)(?!.*\.\.)([A-Za-z0-9_'+\-\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\-]*\.)+[A-Za-z]{2,}$
            - type: 'null'
          description: Email address of the person
        status:
          type: string
          enum:
            - NOT_STARTED
            - IN_REVIEW
            - APPROVED
            - REJECTED
          description: Verification status
          example: NOT_STARTED
        createdAt:
          type: string
          description: When the person was added (ISO 8601)
        updatedAt:
          type: string
          description: When the person was last updated (ISO 8601)
      required:
        - id
        - companyId
        - fullName
        - email
        - status
        - createdAt
        - updatedAt
      description: Company related person
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key as Bearer token

````