Execute deterministic identity resolution merges
curl --request POST \
--url https://api.orbit.devotel.io/api/v1/cdp/identity-resolution/runimport requests
url = "https://api.orbit.devotel.io/api/v1/cdp/identity-resolution/run"
response = requests.post(url)
print(response.text)const options = {method: 'POST'};
fetch('https://api.orbit.devotel.io/api/v1/cdp/identity-resolution/run', 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/run",
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/run"
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/run")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orbit.devotel.io/api/v1/cdp/identity-resolution/run")
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,
"merges_applied": 1,
"merge_budget_hit": false,
"merged_groups": [
{
"primary_id": "cnt_01J8Z9K3P4Q5R6S7T8U9V0W1X2",
"merged_secondary_ids": [
"cnt_01J8Z9K3P4Q5R6S7T8U9V0W1X9"
],
"confidence": 1
}
],
"failed": [],
"review_queue_count": 1,
"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
Execute deterministic identity resolution merges
Runs the cross-field exact-match resolution pass and auto-merges every unified-profile group whose confidence meets the auto-merge threshold, bounded by max_merges (default 50). Groups below the threshold are returned as the review queue for POST /identity-resolution/apply or the match-review queue. Run POST /identity-resolution/preview first to inspect the group set. Every merge writes its durable audit artefact; the whole run appends one consolidated operator-action audit entry.
POST
/
api
/
v1
/
cdp
/
identity-resolution
/
run
Execute deterministic identity resolution merges
curl --request POST \
--url https://api.orbit.devotel.io/api/v1/cdp/identity-resolution/runimport requests
url = "https://api.orbit.devotel.io/api/v1/cdp/identity-resolution/run"
response = requests.post(url)
print(response.text)const options = {method: 'POST'};
fetch('https://api.orbit.devotel.io/api/v1/cdp/identity-resolution/run', 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/run",
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/run"
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/run")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orbit.devotel.io/api/v1/cdp/identity-resolution/run")
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,
"merges_applied": 1,
"merge_budget_hit": false,
"merged_groups": [
{
"primary_id": "cnt_01J8Z9K3P4Q5R6S7T8U9V0W1X2",
"merged_secondary_ids": [
"cnt_01J8Z9K3P4Q5R6S7T8U9V0W1X9"
],
"confidence": 1
}
],
"failed": [],
"review_queue_count": 1,
"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
Merge counters (merges_applied, budget flag, applied/failed pairs) plus the leftover below-threshold review queue.
Merge counters (merges_applied, budget flag, applied/failed pairs) plus the leftover below-threshold review queue.