---
title: "List Guided identity verification sessions"
method: GET
path: "/applications/identity-verification-sessions"
tags: ["Onboarding"]
---

# List Guided identity verification sessions

`GET /applications/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`.

## Query parameters

- `limit` integer — The maximum number of results to return.
- `offset` integer — The number of items to skip before returning results.
- `applicationId` string, uuid — Filter sessions by application.
- `associatedPersonId` string, uuid — Filter sessions by associated person.

## Response `200`

OK

- object
  - `limit` integer — The maximum number of results to return.
  - `offset` integer — The number of items to skip before returning results.
  - `count` integer, required — The total amount of records matching the querying when "limit" is ignored.
  - `rows` object[], required — List of Guided identity verification sessions matching the query criteria.
    - `id` string, uuid, required — Unique identifier of the session.
    - `applicationId` string, uuid, required — The ID of the application to work with.
    - `associatedPersonId` string, uuid — The associated person (director or UBO) the session relates to. Present for business applications only.
    - `correlationId` string, uuid, required — Identifier shared with the matching IdentityVerificationStatusUpdated webhook event.
    - `actionUrl` string, uri, required — The verification link issued to the applicant.
    - `status` 'to_be_completed' | 'in_progress' | 'completed' | 'expired', required — Verification status of the session.
    - `result` 'approved' | 'declined' | 'resubmission_requested' — Verification result. Returned only when the session has completed.
    - `createdAt` string, date-time, required — The date the Resource was initially created. ISO 8601 format without milliseconds.
    - `updatedAt` string, date-time, required — The date the Resource was last modified. ISO 8601 format without milliseconds.

---

[API](https://skmtc.net/equalsmoney/apis/cis-api.md) · [All operations](https://skmtc.net/equalsmoney/apis/cis-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/equalsmoney/cis-api/versions/a162c72b8bf6/schema)
