> ## 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 person applications

> Returns a paginated list of related person KYC applications for the company, ordered by creation date descending. Use the `status` query parameter to filter by application status (comma-separated), or `relatedPersonId` to scope to a single related person.



## OpenAPI

````yaml /api-reference/openapi.json get /companies/{id}/related-person-applications/
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-person-applications/:
    get:
      tags:
        - Companies
      summary: List related person applications
      description: >-
        Returns a paginated list of related person KYC applications for the
        company, ordered by creation date descending. Use the `status` query
        parameter to filter by application status (comma-separated), or
        `relatedPersonId` to scope to a single related person.
      operationId: listRelatedPersonApplications_companies
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            description: Unique company identifier
        - 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 by exact application ID match
            type: string
            format: uuid
        - name: relatedPersonId
          in: query
          required: false
          schema:
            description: Filter by related person ID
            type: string
            format: uuid
        - name: status
          in: query
          required: false
          schema:
            description: Filter by application status (comma-separated)
            type: array
            items:
              type: string
              enum:
                - INITIATED
                - IN_PROGRESS
                - APPROVED
                - REJECTED
                - REVIEW_REQUIRED
                - WORKFLOW_ERROR
                - EXPIRED
              example: INITIATED
        - 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 person applications
          content:
            application/json:
              schema:
                type: object
                properties:
                  items:
                    type: array
                    items:
                      $ref: '#/components/schemas/RelatedPersonApplication'
                      description: Related person application 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:
    RelatedPersonApplication:
      type: object
      properties:
        id:
          description: Unique company application identifier
          type: string
          format: uuid
        companyId:
          description: Company this application belongs to
          type: string
          format: uuid
        status:
          type: string
          enum:
            - INITIATED
            - IN_PROGRESS
            - APPROVED
            - REJECTED
            - REVIEW_REQUIRED
            - WORKFLOW_ERROR
            - EXPIRED
          description: Application lifecycle status
          example: INITIATED
        sessionUrl:
          anyOf:
            - type: string
            - type: 'null'
          description: URL for the corporate client to complete verification
        expiresAt:
          anyOf:
            - type: string
            - type: 'null'
          description: When the verification session URL expires (ISO 8601)
        createdAt:
          type: string
          description: When the application was created (ISO 8601)
        updatedAt:
          type: string
          description: When the application was last updated (ISO 8601)
        relatedPersonId:
          description: Related person this application belongs to
          type: string
          format: uuid
      required:
        - id
        - companyId
        - status
        - sessionUrl
        - expiresAt
        - createdAt
        - updatedAt
        - relatedPersonId
      description: Related person application
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key as Bearer token

````