Skip to main content
PATCH
/
cases
/
{case_id}
/
identity-verifications
/
{verification_id}
Update verification
curl --request PATCH \
  --url https://api.example.com/v1/cases/{case_id}/identity-verifications/{verification_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "document_ids": [
    "<string>"
  ],
  "notes": "<string>"
}
'
{
  "data": {
    "id": "01K9IV01AJ0T55HRYE78AN7VVV",
    "subject_type": "deceased",
    "status": "verified",
    "verification_method": "ssdi_lookup",
    "verification_level": "level_2",
    "checks": [
      {
        "check_type": "name_match",
        "status": "passed",
        "checked_at": "2023-11-07T05:31:56Z",
        "details": "<string>"
      }
    ],
    "document_ids": [
      "<string>"
    ],
    "verified_at": "2023-11-07T05:31:56Z",
    "expires_at": "2023-11-07T05:31:56Z",
    "failure_reason": "<string>",
    "notes": "<string>",
    "initiated_by": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

case_id
string
required

Unique case identifier (ULID format).

verification_id
string
required

Body

application/json
document_ids
string[]

Additional document IDs to attach.

notes
string

Response

Verification updated.

data
object