Skip to main content
GET
/
identity-records
/
{ir}
/
re-identify
/
{tokenRef}
Confirm Re-identification Status
curl --request GET \
  --url https://api.central.consent/v1/identity-records/{ir}/re-identify/{tokenRef} \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://api.central.consent/v1/identity-records/{ir}/re-identify/{tokenRef}"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.central.consent/v1/identity-records/{ir}/re-identify/{tokenRef}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.central.consent/v1/identity-records/{ir}/re-identify/{tokenRef}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.central.consent/v1/identity-records/{ir}/re-identify/{tokenRef}"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("Authorization", "Bearer <token>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.central.consent/v1/identity-records/{ir}/re-identify/{tokenRef}")
.header("Authorization", "Bearer <token>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.central.consent/v1/identity-records/{ir}/re-identify/{tokenRef}")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
{
  "response": {
    "resource": "/v1/identity-records/ir_a3c5e7f9b1d3a3c5e7f9b1d3/re-identify/mlr_9f8e7d6c5b4a9f8e7d6c5b4a",
    "timestamp": "2026-03-24T09:05:00Z",
    "transaction-id": "tid_aabbccddeeff001122334455"
  },
  "status": "pending",
  "confirmed-at": null
}

Authorizations

Authorization
string
header
required

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

Path Parameters

ir
string
required

Unique opaque identifier for an Identity Record, issued by the register on creation. Referenced from record-metadata.identity-record-ref on an AccessRecord to link the two resources.

Pattern: ^ir_[0-9a-f]{24}$
Example:

"ir_a3c5e7f9b1d3a3c5e7f9b1d3"

tokenRef
string
required

The token-ref returned by the magic-link initiation call.

Pattern: ^mlr_[0-9a-f]{24}$
Example:

"mlr_9f8e7d6c5b4a9f8e7d6c5b4a"

Response

Status returned.

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