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"
}
}Update verification notes or attach additional documents. Cannot change the verification status directly — status transitions happen automatically based on check results.
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"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Unique case identifier (ULID format).
Verification updated.
Show child attributes