Dry-run deterministic identity resolution
curl --request POST \
--url https://api.orbit.devotel.io/api/v1/cdp/identity-resolution/previewimport requests
url = "https://api.orbit.devotel.io/api/v1/cdp/identity-resolution/preview"
response = requests.post(url)
print(response.text)const options = {method: 'POST'};
fetch('https://api.orbit.devotel.io/api/v1/cdp/identity-resolution/preview', 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.orbit.devotel.io/api/v1/cdp/identity-resolution/preview",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
]);
$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.orbit.devotel.io/api/v1/cdp/identity-resolution/preview"
req, _ := http.NewRequest("POST", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.orbit.devotel.io/api/v1/cdp/identity-resolution/preview")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orbit.devotel.io/api/v1/cdp/identity-resolution/preview")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
response = http.request(request)
puts response.read_body{
"data": {
"threshold": 0.8,
"scanned": 420,
"truncated": false,
"group_count": 3,
"auto_apply_count": 1,
"review_queue_count": 2,
"auto_apply": [
{
"primary_id": "cnt_01J8Z9K3P4Q5R6S7T8U9V0W1X2",
"secondary_ids": [
"cnt_01J8Z9K3P4Q5R6S7T8U9V0W1X9"
],
"member_ids": [
"cnt_01J8Z9K3P4Q5R6S7T8U9V0W1X2",
"cnt_01J8Z9K3P4Q5R6S7T8U9V0W1X9"
],
"match_types": [
"email"
],
"confidence": 1,
"reasons": [
{
"match_type": "email",
"value_masked": "s•••@example.com"
}
]
}
],
"review_queue": [
{
"primary_id": "cnt_01J8Z9K3P4Q5R6S7T8U9V0W1Y2",
"secondary_ids": [
"cnt_01J8Z9K3P4Q5R6S7T8U9V0W1Y9"
],
"member_ids": [
"cnt_01J8Z9K3P4Q5R6S7T8U9V0W1Y2",
"cnt_01J8Z9K3P4Q5R6S7T8U9V0W1Y9"
],
"match_types": [
"phone"
],
"confidence": 0.6,
"reasons": [
{
"match_type": "phone",
"value_masked": "+••••1234"
}
]
}
]
},
"meta": {
"request_id": "req_01J9A2B3C4D5E6F7G8H9J1",
"timestamp": "2026-09-03T09:30:00.000Z"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"status": 123,
"details": {}
},
"meta": {
"request_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"docs_url": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"status": 123,
"details": {}
},
"meta": {
"request_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"docs_url": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"status": 123,
"details": {}
},
"meta": {
"request_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"docs_url": "<string>"
}
}{
"error": {
"code": "RATE_LIMITED",
"message": "<string>",
"status": 429,
"retry_after": 2
},
"meta": {
"request_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"docs_url": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"status": 123,
"details": {}
},
"meta": {
"request_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"docs_url": "<string>"
}
}CDP
Dry-run deterministic identity resolution
Computes the candidate unified-profile groups that cross-field exact matching (normalized email / E.164 phone / external_id) would form, and returns them split into auto-apply vs review-queue by the auto-merge threshold — WITHOUT writing anything. Use it to preview the blast radius of a resolution run before committing to it; the dashboard’s merge-review surface is driven off this endpoint.
POST
/
api
/
v1
/
cdp
/
identity-resolution
/
preview
Dry-run deterministic identity resolution
curl --request POST \
--url https://api.orbit.devotel.io/api/v1/cdp/identity-resolution/previewimport requests
url = "https://api.orbit.devotel.io/api/v1/cdp/identity-resolution/preview"
response = requests.post(url)
print(response.text)const options = {method: 'POST'};
fetch('https://api.orbit.devotel.io/api/v1/cdp/identity-resolution/preview', 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.orbit.devotel.io/api/v1/cdp/identity-resolution/preview",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
]);
$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.orbit.devotel.io/api/v1/cdp/identity-resolution/preview"
req, _ := http.NewRequest("POST", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.orbit.devotel.io/api/v1/cdp/identity-resolution/preview")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orbit.devotel.io/api/v1/cdp/identity-resolution/preview")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
response = http.request(request)
puts response.read_body{
"data": {
"threshold": 0.8,
"scanned": 420,
"truncated": false,
"group_count": 3,
"auto_apply_count": 1,
"review_queue_count": 2,
"auto_apply": [
{
"primary_id": "cnt_01J8Z9K3P4Q5R6S7T8U9V0W1X2",
"secondary_ids": [
"cnt_01J8Z9K3P4Q5R6S7T8U9V0W1X9"
],
"member_ids": [
"cnt_01J8Z9K3P4Q5R6S7T8U9V0W1X2",
"cnt_01J8Z9K3P4Q5R6S7T8U9V0W1X9"
],
"match_types": [
"email"
],
"confidence": 1,
"reasons": [
{
"match_type": "email",
"value_masked": "s•••@example.com"
}
]
}
],
"review_queue": [
{
"primary_id": "cnt_01J8Z9K3P4Q5R6S7T8U9V0W1Y2",
"secondary_ids": [
"cnt_01J8Z9K3P4Q5R6S7T8U9V0W1Y9"
],
"member_ids": [
"cnt_01J8Z9K3P4Q5R6S7T8U9V0W1Y2",
"cnt_01J8Z9K3P4Q5R6S7T8U9V0W1Y9"
],
"match_types": [
"phone"
],
"confidence": 0.6,
"reasons": [
{
"match_type": "phone",
"value_masked": "+••••1234"
}
]
}
]
},
"meta": {
"request_id": "req_01J9A2B3C4D5E6F7G8H9J1",
"timestamp": "2026-09-03T09:30:00.000Z"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"status": 123,
"details": {}
},
"meta": {
"request_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"docs_url": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"status": 123,
"details": {}
},
"meta": {
"request_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"docs_url": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"status": 123,
"details": {}
},
"meta": {
"request_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"docs_url": "<string>"
}
}{
"error": {
"code": "RATE_LIMITED",
"message": "<string>",
"status": 429,
"retry_after": 2
},
"meta": {
"request_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"docs_url": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"status": 123,
"details": {}
},
"meta": {
"request_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"docs_url": "<string>"
}
}Response
Scan totals plus both group sets: auto_apply (confidence at/above the threshold) and review_queue (below it), with masked match reasons.
Scan totals plus both group sets: auto_apply (confidence at/above the threshold) and review_queue (below it), with masked match reasons.