Record an accept / reject verdict on a match review
curl --request POST \
--url https://api.orbit.devotel.io/api/v1/cdp/identity-resolution/match-reviews/{id}/verdict \
--header 'Content-Type: application/json' \
--data '
{
"note": "<string>"
}
'import requests
url = "https://api.orbit.devotel.io/api/v1/cdp/identity-resolution/match-reviews/{id}/verdict"
payload = { "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({note: '<string>'})
};
fetch('https://api.orbit.devotel.io/api/v1/cdp/identity-resolution/match-reviews/{id}/verdict', 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/{id}/verdict",
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([
'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/{id}/verdict"
payload := strings.NewReader("{\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/{id}/verdict")
.header("Content-Type", "application/json")
.body("{\n \"note\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orbit.devotel.io/api/v1/cdp/identity-resolution/match-reviews/{id}/verdict")
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 \"note\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"review": {
"id": "cdpMatchReview_01J9A2B3C4D5E6F7G8H9J0",
"primary_contact_id": "cnt_01J8Z9K3P4Q5R6S7T8U9V0W1X2",
"candidate_contact_id": "cnt_01J8Z9K3P4Q5R6S7T8U9V0W1X9",
"confidence": 0.84,
"band": "review",
"matched_fields": [
"email",
"first_name"
],
"status": "accepted",
"note": "Same customer — approved.",
"reviewed_by": "user_01J8Z9K3P4Q5R6S7T8U9V0W1X2",
"reviewed_at": "2026-09-03T10:15:00.000Z",
"merge_id": "mrg_01J9A2B3C4D5E6F7G8H9J2",
"created_at": "2026-09-03T09:30:00.000Z",
"updated_at": "2026-09-03T10:15:00.000Z"
},
"merge": {
"merge_id": "mrg_01J9A2B3C4D5E6F7G8H9J2",
"primary_id": "cnt_01J8Z9K3P4Q5R6S7T8U9V0W1X2",
"merged_secondary_ids": [
"cnt_01J8Z9K3P4Q5R6S7T8U9V0W1X9"
]
}
},
"meta": {
"request_id": "req_01J9A2B3C4D5E6F7G8H9J1",
"timestamp": "2026-09-03T10:15: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
Record an accept / reject verdict on a match review
Decides one pending match-review row. accept merges the candidate contact into the primary via the canonical merge path (honouring the tenant survivorship policy) and stamps the merge id onto the row; reject closes it without merging. Verdicts are terminal — a second verdict on the same row is a 409, and both outcomes are audit-logged. Requires the contacts:write scope.
POST
/
api
/
v1
/
cdp
/
identity-resolution
/
match-reviews
/
{id}
/
verdict
Record an accept / reject verdict on a match review
curl --request POST \
--url https://api.orbit.devotel.io/api/v1/cdp/identity-resolution/match-reviews/{id}/verdict \
--header 'Content-Type: application/json' \
--data '
{
"note": "<string>"
}
'import requests
url = "https://api.orbit.devotel.io/api/v1/cdp/identity-resolution/match-reviews/{id}/verdict"
payload = { "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({note: '<string>'})
};
fetch('https://api.orbit.devotel.io/api/v1/cdp/identity-resolution/match-reviews/{id}/verdict', 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/{id}/verdict",
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([
'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/{id}/verdict"
payload := strings.NewReader("{\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/{id}/verdict")
.header("Content-Type", "application/json")
.body("{\n \"note\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orbit.devotel.io/api/v1/cdp/identity-resolution/match-reviews/{id}/verdict")
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 \"note\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"review": {
"id": "cdpMatchReview_01J9A2B3C4D5E6F7G8H9J0",
"primary_contact_id": "cnt_01J8Z9K3P4Q5R6S7T8U9V0W1X2",
"candidate_contact_id": "cnt_01J8Z9K3P4Q5R6S7T8U9V0W1X9",
"confidence": 0.84,
"band": "review",
"matched_fields": [
"email",
"first_name"
],
"status": "accepted",
"note": "Same customer — approved.",
"reviewed_by": "user_01J8Z9K3P4Q5R6S7T8U9V0W1X2",
"reviewed_at": "2026-09-03T10:15:00.000Z",
"merge_id": "mrg_01J9A2B3C4D5E6F7G8H9J2",
"created_at": "2026-09-03T09:30:00.000Z",
"updated_at": "2026-09-03T10:15:00.000Z"
},
"merge": {
"merge_id": "mrg_01J9A2B3C4D5E6F7G8H9J2",
"primary_id": "cnt_01J8Z9K3P4Q5R6S7T8U9V0W1X2",
"merged_secondary_ids": [
"cnt_01J8Z9K3P4Q5R6S7T8U9V0W1X9"
]
}
},
"meta": {
"request_id": "req_01J9A2B3C4D5E6F7G8H9J1",
"timestamp": "2026-09-03T10:15: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>"
}
}Path Parameters
Body
application/json
Response
The decided review row; on accept, merge carries the merge summary (merge id, survivor id) and the row's merge_id is stamped.
The decided review row; on accept, merge carries the merge summary (merge id, survivor id) and the row's merge_id is stamped.