Skip to main content
GET
/
identity-records
/
reidentify
/
{tokenRef}
Poll Cross-DUID Re-identification Status
curl --request GET \
  --url https://api.central.consent/v1/identity-records/reidentify/{tokenRef} \
  --header 'Authorization: Bearer <token>'
{
  "response": {
    "resource": "/v1/access-records/ak_691df0c788ca043403b7fa90",
    "timestamp": "2026-03-11T12:00:00Z",
    "transaction-id": "tid_691df0c788ca043403b7fa90"
  },
  "method": "magic-link",
  "status": "pending",
  "confirmed-at": "2026-03-24T09:07:28Z"
}

Authorizations

Authorization
string
header
required

JWT from GET /auth/token. Pass as Authorization: Bearer <token>. Expires after 7200s.

Path Parameters

tokenRef
string
required

The token-ref returned by POST /identity-records/reidentify

Response

Re-identification status.

Status of a pending magic-link or passkey re-identification flow. Returned by GET /identity-records/{ir}/re-identify/{token-ref}.

response
object
required
method
enum<string>
required

The re-identification method that generated this token.

Available options:
magic-link,
passkey-assert,
passkey-register
status
enum<string>
required
  • pending — awaiting customer action (link not yet clicked, or passkey ceremony not yet completed).
  • confirmed — re-identification complete.
  • expired — window elapsed without completion (15 minutes for magic link; 5 minutes for passkey redirect).
Available options:
pending,
confirmed,
expired
confirmed-at
string<date-time> | null

ISO 8601 timestamp of when the customer completed the challenge. Null when status is pending or expired.

Example:

"2026-03-24T09:07:28Z"

Last modified on March 25, 2026