Skip to main content
PATCH
/
verifications
/
{verification_id}
Update Verification
curl --request PATCH \
  --url https://{defaultHost}/verifications/{verification_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "first_name": "<string>",
  "last_name": "<string>",
  "date_of_birth": "<string>",
  "country": "<string>",
  "personal_address": {},
  "business_name": "<string>",
  "business_address": {},
  "business_structure": "<string>",
  "rfis": [
    {
      "id": "<string>",
      "value": "<string>",
      "address": {},
      "files": [
        {}
      ]
    }
  ]
}
'
{
  "id": "<string>",
  "first_name": "<string>",
  "last_name": "<string>",
  "date_of_birth": "<string>",
  "business_name": "<string>",
  "business_structure": "<string>",
  "country": "<string>",
  "address": {},
  "session_url": "<string>",
  "rfis": [
    {
      "id": "<string>",
      "type": "<string>",
      "description": "<string>",
      "error_message": "<string>",
      "requested_files": [
        {
          "category": "<string>",
          "kind": "<string>",
          "is_optional": true
        }
      ],
      "created_at": "<string>"
    }
  ],
  "created_at": "<string>",
  "updated_at": "<string>"
}

Authorizations

Authorization
string
header
required

An account API key, account scoped JWT, app API key, or user OAuth token.

Headers

Api-Version-Date
string<date>

Pins the request to a dated API version. When omitted, the request uses the original (2025-01-01) request/response shapes, so existing unversioned callers are never broken. Generated SDKs always send the latest version they were built against. An unrecognized value is rejected with a 400. The schemas documented here always describe the latest version.

Example:

"2026-06-09"

Path Parameters

verification_id
string
required

The ID of the verification, which will look like idpf_*************

Body

application/json
first_name
string

The first name on the verification.

last_name
string

The last name on the verification.

date_of_birth
string

The date of birth.

country
string

The country code.

personal_address
object

The personal address.

business_name
string

The business name.

business_address
object

The business address.

business_structure
string

The business structure.

rfis
object[]

RFI responses. Each entry must include id and a value, address, or files payload.

Response

verification updated

id
string

The verification ID, e.g. idpf_*

kind
enum<string>
Available options:
individual,
business
status
enum<string>
Available options:
not_started,
pending,
approved,
rejected,
action_required
first_name
string | null
last_name
string | null
date_of_birth
string | null
business_name
string | null
business_structure
string | null
country
string | null
address
object
session_url
string | null
rfis
object[]
created_at
string
updated_at
string