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

# List Guided identity verification sessions

> Returns a paginated list of Guided identity verification sessions on your account. Results are sorted by createdAt descending (newest first). Filter by `applicationId` or `associatedPersonId` to narrow results. When a person appears on multiple applications, their session is returned once per application — the rows share the same `id` but differ in `applicationId`.



## OpenAPI

````yaml /autogenerated/openapi/onboarding.openapi.json get /applications/identity-verification-sessions
openapi: 3.1.0
info:
  title: Onboarding API
  version: 2.0.0
  description: Version 2
  license:
    name: UNLICENSED
    url: https://docs.equalsmoney.com
servers:
  - url: https://api.equalsmoney.com/v2
    description: Production
  - url: https://api-sandbox.equalsmoney.com/v2
    description: Sandbox
security: []
paths:
  /applications/identity-verification-sessions:
    get:
      tags:
        - Onboarding
      summary: List Guided identity verification sessions
      description: >-
        Returns a paginated list of Guided identity verification sessions on
        your account. Results are sorted by createdAt descending (newest first).
        Filter by `applicationId` or `associatedPersonId` to narrow results.
        When a person appears on multiple applications, their session is
        returned once per application — the rows share the same `id` but differ
        in `applicationId`.
      operationId: listIdentityVerificationSessions
      parameters:
        - name: limit
          in: query
          schema:
            description: The maximum number of results to return.
            default: 100
            type:
              - integer
            minimum: 1
            maximum: 1000
            example: 200
        - name: offset
          in: query
          schema:
            description: The number of items to skip before returning results.
            default: 0
            type:
              - integer
            example: 100
        - name: applicationId
          in: query
          schema:
            description: Filter sessions by application.
            type:
              - string
            format: uuid
            maxLength: 36
        - name: associatedPersonId
          in: query
          schema:
            description: Filter sessions by associated person.
            type:
              - string
            format: uuid
            maxLength: 36
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type:
                  - object
                properties:
                  limit:
                    description: The maximum number of results to return.
                    default: 100
                    type:
                      - integer
                    minimum: 1
                    maximum: 1000
                    example: 200
                  offset:
                    description: The number of items to skip before returning results.
                    default: 0
                    type:
                      - integer
                    example: 100
                  count:
                    type:
                      - integer
                    description: >-
                      The total amount of records matching the querying when
                      "limit" is ignored.
                    example: 67
                  rows:
                    type:
                      - array
                    items:
                      type:
                        - object
                      properties:
                        id:
                          type:
                            - string
                          format: uuid
                          description: Unique identifier of the session.
                          example: 5f8a2c14-3e6b-4d9f-a1b2-c3d4e5f60789
                        applicationId:
                          type:
                            - string
                          format: uuid
                          maxLength: 36
                          description: The ID of the application to work with.
                          example: e9293471-5eb3-4dbc-916c-dbaf9e2deefd
                        associatedPersonId:
                          type:
                            - string
                          format: uuid
                          maxLength: 36
                          description: >-
                            The associated person (director or UBO) the session
                            relates to. Present for business applications only.
                          example: d4c3b2a1-5678-4e9a-bcde-f01234567890
                        correlationId:
                          type:
                            - string
                          format: uuid
                          description: >-
                            Identifier shared with the matching
                            IdentityVerificationStatusUpdated webhook event.
                          example: 7a1b2c3d-4e5f-4a6b-8c7d-9e0f1a2b3c4d
                        actionUrl:
                          type:
                            - string
                          format: uri
                          description: The verification link issued to the applicant.
                          example: https://verify.example.com/session/abc123
                        status:
                          type:
                            - string
                          enum:
                            - to_be_completed
                            - in_progress
                            - completed
                            - expired
                          description: Verification status of the session.
                          example: completed
                        result:
                          type:
                            - string
                          enum:
                            - approved
                            - declined
                            - resubmission_requested
                          description: >-
                            Verification result. Returned only when the session
                            has completed.
                          example: approved
                        createdAt:
                          type:
                            - string
                          format: date-time
                          description: >-
                            The date the Resource was initially created. ISO
                            8601 format without milliseconds.
                        updatedAt:
                          type:
                            - string
                          format: date-time
                          description: >-
                            The date the Resource was last modified. ISO 8601
                            format without milliseconds.
                      required:
                        - id
                        - applicationId
                        - correlationId
                        - actionUrl
                        - status
                        - createdAt
                        - updatedAt
                    description: >-
                      List of Guided identity verification sessions matching the
                      query criteria.
                required:
                  - count
                  - rows
                example:
                  limit: 200
                  offset: 100
                  count: 67
                  rows:
                    - id: 5f8a2c14-3e6b-4d9f-a1b2-c3d4e5f60789
                      applicationId: e9293471-5eb3-4dbc-916c-dbaf9e2deefd
                      associatedPersonId: d4c3b2a1-5678-4e9a-bcde-f01234567890
                      correlationId: 7a1b2c3d-4e5f-4a6b-8c7d-9e0f1a2b3c4d
                      actionUrl: https://verify.example.com/session/abc123
                      status: completed
                      result: approved
                      createdAt: '2019-08-24T14:15:22Z'
                      updatedAt: '2019-08-24T14:15:22Z'
      security:
        - CommonAuth: []
components:
  securitySchemes:
    CommonAuth:
      type: apiKey
      in: header
      name: Authorization

````