For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
  • Getting Started
    • Introduction
    • How Verifa Works
    • Quickstart
    • Choosing an Integration Method
  • Use Cases
    • KYC Onboarding
    • Age Verification
    • AML Compliance
    • Fraud Prevention
    • Marketplace Trust & Safety
  • Core Concepts
    • Overview
    • Sessions
    • Verifications & Checks
    • Workflows
    • Identities
    • Cases
    • Screening & Reports
    • Lists
  • Integration Guides
    • Overview
    • JavaScript SDK
    • Web Capture Flow
    • API-Only Integration
    • Mobile SDK
    • Webhooks Guide
    • MCP Server
    • Migrating from Persona
  • API Details
    • Overview
    • Authentication
    • Pagination
    • Rate Limiting
    • Versioning
    • Errors
    • Webhooks
    • Idempotency
    • Key Inflection
    • Data Access
    • Data Retention
  • Tutorials
    • Creating Your First Verification Session
    • Creating a Workflow
    • Receiving Webhooks & Validating Signatures
    • Handling Webhook Events
    • Custom Document Types & AI Extraction
  • Best Practices
    • Testing
    • Preventing Duplicates
    • Fraud Signals
    • Changelog
  • API Reference
      • GETList identities
      • POSTCreate an identity
      • GETGet an identity
      • PATCHUpdate an identity
      • DELRedact an identity
      • GETExport identity data (GDPR Art. 15 DSAR)
      • POSTSearch identities
      • GETList identity sessions
      • GETGet identity audit log
      • POSTAdd a tag
      • POSTRemove a tag
      • POSTSet tags
      • POSTPreview identity merge
      • POSTMerge identities
      • POSTArchive an identity
      • POSTRestore an archived identity
      • POSTPause continuous monitoring for an identity
      • POSTResume continuous monitoring for an identity
      • POSTAdvanced identity search
      • GETGet custom field values
      • PATCHSet custom field values
      • GETList identity relationships
      • POSTCreate an identity relationship
      • DELDelete an identity relationship
      • GETQuery identity relationship graph
      • GETFind cross-session image similarity matches
      • GETGet monitored lists for an identity
      • POSTAdd lists to identity monitoring
      • PUTReplace monitored lists for an identity
API ReferenceIdentities

Restore an archived identity

POST
https://devapi.withverifa.com/api/v1/identities/:identity_id/restore
POST
/api/v1/identities/:identity_id/restore
$curl -X POST https://devapi.withverifa.com/api/v1/identities/identity_id/restore \
> -H "X-API-Key: <apiKey>"
1{
2 "id": "idn_abc123",
3 "status": "string",
4 "session_count": 1,
5 "is_sandbox": true,
6 "created_at": "2024-01-15T09:30:00Z",
7 "external_ref": "string",
8 "latest_session_id": "string",
9 "latest_result_id": "string",
10 "latest_session_snapshot": {
11 "result_id": "string",
12 "session_id": "string",
13 "status": "string",
14 "face_match_passed": true,
15 "face_match_score": 1.1,
16 "age_check_passed": true,
17 "extracted_age": 1,
18 "rejection_reason": "string",
19 "rejection_reason_code": "document_unreadable",
20 "check_results": {},
21 "reviewed_by": "string",
22 "reviewed_at": "2024-01-15T09:30:00Z",
23 "created_at": "2024-01-15T09:30:00Z"
24 },
25 "country": "string",
26 "extracted_data": {
27 "first_name": "string",
28 "last_name": "string",
29 "date_of_birth": "string",
30 "address": {
31 "line1": "string",
32 "line2": "string",
33 "city": "string",
34 "state": "string",
35 "zip": "string"
36 },
37 "document_number": "string",
38 "nationality": "string",
39 "gender": "string",
40 "ssn": "string",
41 "document_type": "string",
42 "document_expiration_date": "string",
43 "document_issuing_state": "string"
44 },
45 "first_verified_at": "2024-01-15T09:30:00Z",
46 "last_verified_at": "2024-01-15T09:30:00Z",
47 "archived_at": "2024-01-15T09:30:00Z",
48 "identity_type_id": "string",
49 "custom_fields": {},
50 "tags": [
51 "string"
52 ],
53 "updated_at": "2024-01-15T09:30:00Z"
54}

Restores a previously archived identity, making it visible in list results again. If the identity’s monitoring was paused by the archive cascade (paused_reason='archived'), monitoring is also re-enabled. Manually-paused identities (paused_reason='manual') stay paused.

Was this page helpful?
Previous

Pause continuous monitoring for an identity

Next
Built with

Authentication

X-API-Keystring

Organization API key. Keys are prefixed with vk_live_ (production) or vk_sandbox_ (sandbox).

Path parameters

identity_idstringRequired

Identity ID (idn_*) or external reference.

Headers

Verifa-VersiondateOptional

API version date string (e.g. 2026-02-01). If omitted, the version pinned to your API key is used.

Idempotency-KeystringOptional<=255 characters

Unique key for idempotent requests. Cached for 24 hours. Sending the same key with different parameters returns 422.

Response

Identity restored.
idstring
statusstring
session_countinteger
is_sandboxboolean
created_atdatetime
external_refstring or null
latest_session_idstring or null
latest_result_idstring or null
latest_session_snapshotobject or null

Most-recent session result. null when the identity has no results yet (e.g. screening-only identities) or when the result row could not be loaded.

countrystring or null
extracted_dataobject

PII extracted from the identity document. Fields returned depend on your organization’s api_pii_fields configuration.

first_verified_atdatetime or null
last_verified_atdatetime or null
archived_atdatetime or null
identity_type_idstring or null
custom_fieldsmap from strings to any
tagslist of strings
updated_atdatetime

Errors

401
Unauthorized Error
404
Not Found Error
422
Unprocessable Entity Error