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

# List customer person screening history

> List customer person screening events with cursor pagination.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/customers/{customerId}/persons/{personId}/screening/history
openapi: 3.1.0
info:
  title: Nuvera API
  description: Nuvera Payment Platform REST API
  version: '1.0'
  contact: {}
servers:
  - url: http://localhost:45000
security: []
tags: []
paths:
  /api/v1/customers/{customerId}/persons/{personId}/screening/history:
    get:
      tags:
        - Screening
      summary: List customer person screening history
      description: List customer person screening events with cursor pagination.
      operationId: ScreeningController_getCustomerPersonScreeningHistory
      parameters:
        - name: customerId
          required: true
          in: path
          schema:
            type: string
        - name: personId
          required: true
          in: path
          schema:
            type: string
        - name: limit
          required: false
          in: query
          schema:
            minimum: 1
            maximum: 100
            default: 25
            type: integer
        - name: cursor
          required: false
          in: query
          schema:
            type: string
      responses:
        default:
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ScreeningHistoryOutputDto_Output'
      security:
        - x-api-key: []
          signed-request: []
components:
  schemas:
    ScreeningHistoryOutputDto_Output:
      type: object
      properties:
        items:
          type: array
          items:
            type: object
            properties:
              screeningId:
                type: string
              trigger:
                type: string
                enum:
                  - ONBOARDING
                  - RESCREEN_ON_EDIT
                  - MONITORING
                  - MANUAL
                  - PAYMENT_CREATE
              outcome:
                type: string
                enum:
                  - CLEAR
                  - POTENTIAL_MATCH
                  - ERROR
              matchCount:
                type: integer
                minimum: -9007199254740991
                maximum: 9007199254740991
              dataVersion:
                anyOf:
                  - type: string
                  - type: 'null'
              createdAt:
                type: string
              errorMessage:
                anyOf:
                  - type: string
                  - type: 'null'
            required:
              - screeningId
              - trigger
              - outcome
              - matchCount
              - dataVersion
              - createdAt
              - errorMessage
            additionalProperties: false
        nextCursor:
          anyOf:
            - type: string
            - type: 'null'
      required:
        - items
        - nextCursor
      additionalProperties: false
  securitySchemes:
    x-api-key:
      type: apiKey
      in: header
      name: x-api-key
      description: Nuvera API application secret key
    signed-request:
      scheme: bearer
      bearerFormat: JWT
      type: http
      description: RS256 per-request signed JWT

````