curl --request POST \
--url https://api.orbit.devotel.io/api/v1/cdp/identity-resolution/match-reviews \
--header 'Content-Type: application/json' \
--data '
{
"primary_contact_id": "<string>",
"candidate_contact_id": "<string>",
"confidence": 123,
"note": "<string>"
}
'import requests
url = "https://api.orbit.devotel.io/api/v1/cdp/identity-resolution/match-reviews"
payload = {
"primary_contact_id": "<string>",
"candidate_contact_id": "<string>",
"confidence": 123,
"note": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
primary_contact_id: '<string>',
candidate_contact_id: '<string>',
confidence: 123,
note: '<string>'
})
};
fetch('https://api.orbit.devotel.io/api/v1/cdp/identity-resolution/match-reviews', 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/match-reviews",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'primary_contact_id' => '<string>',
'candidate_contact_id' => '<string>',
'confidence' => 123,
'note' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.orbit.devotel.io/api/v1/cdp/identity-resolution/match-reviews"
payload := strings.NewReader("{\n \"primary_contact_id\": \"<string>\",\n \"candidate_contact_id\": \"<string>\",\n \"confidence\": 123,\n \"note\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
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/match-reviews")
.header("Content-Type", "application/json")
.body("{\n \"primary_contact_id\": \"<string>\",\n \"candidate_contact_id\": \"<string>\",\n \"confidence\": 123,\n \"note\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orbit.devotel.io/api/v1/cdp/identity-resolution/match-reviews")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"primary_contact_id\": \"<string>\",\n \"candidate_contact_id\": \"<string>\",\n \"confidence\": 123,\n \"note\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": "cdpMatchReview_01J9A2B3C4D5E6F7G8H9J0",
"primary_contact_id": "cnt_01J8Z9K3P4Q5R6S7T8U9V0W1X2",
"candidate_contact_id": "cnt_01J8Z9K3P4Q5R6S7T8U9V0W1X9",
"confidence": 0.84,
"band": "review",
"matched_fields": [
"email",
"first_name"
],
"field_scores": [],
"input": {},
"status": "pending",
"note": null,
"reviewed_by": null,
"reviewed_at": null,
"merge_id": null,
"created_at": "2026-09-03T09:30:00.000Z",
"updated_at": "2026-09-03T09:30:00.000Z"
},
"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>"
}
}Enqueue a scored candidate pair for steward review
Persists a probabilistic-merge candidate pair (survivor + duplicate) as a pending steward-review row, carrying the scorer’s confidence, band and matched fields so the queue is self-describing. Idempotent per pair — re-POSTing an already-pending pair returns the existing row with 200 instead of 201. Use it to push candidates from POST /identity-resolution/probabilistic-match into a durable human-review queue. Requires the contacts:write scope.
curl --request POST \
--url https://api.orbit.devotel.io/api/v1/cdp/identity-resolution/match-reviews \
--header 'Content-Type: application/json' \
--data '
{
"primary_contact_id": "<string>",
"candidate_contact_id": "<string>",
"confidence": 123,
"note": "<string>"
}
'import requests
url = "https://api.orbit.devotel.io/api/v1/cdp/identity-resolution/match-reviews"
payload = {
"primary_contact_id": "<string>",
"candidate_contact_id": "<string>",
"confidence": 123,
"note": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
primary_contact_id: '<string>',
candidate_contact_id: '<string>',
confidence: 123,
note: '<string>'
})
};
fetch('https://api.orbit.devotel.io/api/v1/cdp/identity-resolution/match-reviews', 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/match-reviews",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'primary_contact_id' => '<string>',
'candidate_contact_id' => '<string>',
'confidence' => 123,
'note' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.orbit.devotel.io/api/v1/cdp/identity-resolution/match-reviews"
payload := strings.NewReader("{\n \"primary_contact_id\": \"<string>\",\n \"candidate_contact_id\": \"<string>\",\n \"confidence\": 123,\n \"note\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
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/match-reviews")
.header("Content-Type", "application/json")
.body("{\n \"primary_contact_id\": \"<string>\",\n \"candidate_contact_id\": \"<string>\",\n \"confidence\": 123,\n \"note\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orbit.devotel.io/api/v1/cdp/identity-resolution/match-reviews")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"primary_contact_id\": \"<string>\",\n \"candidate_contact_id\": \"<string>\",\n \"confidence\": 123,\n \"note\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": "cdpMatchReview_01J9A2B3C4D5E6F7G8H9J0",
"primary_contact_id": "cnt_01J8Z9K3P4Q5R6S7T8U9V0W1X2",
"candidate_contact_id": "cnt_01J8Z9K3P4Q5R6S7T8U9V0W1X9",
"confidence": 0.84,
"band": "review",
"matched_fields": [
"email",
"first_name"
],
"field_scores": [],
"input": {},
"status": "pending",
"note": null,
"reviewed_by": null,
"reviewed_at": null,
"merge_id": null,
"created_at": "2026-09-03T09:30:00.000Z",
"updated_at": "2026-09-03T09:30:00.000Z"
},
"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>"
}
}Body
Survivor contact id — the record kept when the verdict accepts.
Probabilistic-duplicate contact id proposed for merge.
Scorer confidence for the pair, 0–1.
Strength band the scorer assigned — review for mid-confidence pairs, auto_merge for strong ones.
auto_merge, review Optional free-text context for the steward.
Response
The enqueued (or already-pending) review row: pair ids, confidence, band, matched fields, status, and timestamps.
The enqueued (or already-pending) review row: pair ids, confidence, band, matched fields, status, and timestamps.