v8

OpenAPI 3.1.02026-08-033623795.0 MB
Identity profiles

List identity profile verifications

Returns a list of verifications attached to an identity profile, ordered by most recent first.

Required permissions:

  • identity:read
get/identity_profiles/{id}/verifications

Path parameters

idstring required
Example:idpf_xxxxxxxxxxxxx

The unique identifier of the identity profile (idpf_xxx).

Query parameters

afterstring nullable

Returns the elements in the list that come after the specified cursor.

beforestring nullable

Returns the elements in the list that come before the specified cursor.

firstinteger nullable

Returns the first n elements from the list.

Example:42
lastinteger nullable

Returns the last n elements from the list.

Example:42

Response

A successful response

Example response

{
  "data": [
    {
      "created_at": "2023-12-01T05:00:00.401Z",
      "id": "verf_xxxxxxxxxxxxx",
      "last_error_reason": "Document image was too blurry to read.",
      "session_url": "https://verify.stripe.com/session/abc123"
    }
  ]
}