List claims for a person by ID. Each row exposes status, archived_at (set on pending rows replaced by a newer pending), superseded_at (set on verified rows replaced by a newer verified), plus a derived lifecycle (active, in_flight, or historical) computed from those three columns. By default the response contains the full history for this person (every row, newest-first), giving callers an audit-ready view without a second request. Pass include_history=false to collapse to the two current rows per claim type — the active verified row and the in_flight pending update, if any. Prefer reading archived_at/superseded_at directly if you only need to know whether a row is current; lifecycle is a convenience discriminator and will stay aligned with those columns.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The ID of the person.
If set, only claims of this type.
identity, nationalities, residence, tax_residencies, fatca_status, pep_status, education_level, employment, financial_profile, investment_experience, expected_activity, relationships, registration, contact_details, lei, registered_address, operating_address, business_nature Filter by claim status (pending or verified). If omitted, claims of all statuses are returned.
pending, verified Default true: every row for this person is returned (archived pendings and superseded verifieds included), newest-first. Set to false to collapse to the two current rows per claim type -- the active verified row and the in_flight pending update, if any.
OK
Identity claim response (first/last name, date of birth).
Unique resource identifier.
ID of the person this claim belongs to.
The status of the claim (pending or verified). A verified claim whose superseded_at is non-null is historical -- a newer verified claim of the same type has taken over. A pending claim whose archived_at is non-null is historical -- a newer pending of the same type has replaced it.
pending, verified Derived role of this row within its (person, claim_type) group, computed from status, archived_at, and superseded_at. active is a verified row with superseded_at IS NULL. in_flight is a pending row with archived_at IS NULL. historical covers archived pendings and superseded verifieds kept for audit. Prefer reading the raw columns directly if you already know which case you care about; this field exists so consumers can keep a single discriminator across the three column values.
active, in_flight, historical