curl --request POST \
--url https://api.orbit.devotel.io/api/v1/cdp/enrichment/{provider_id}/enrich-contact \
--header 'Content-Type: application/json' \
--data '
{
"contact_id": "<string>",
"company_domain": "<string>",
"overwrite": false
}
'import requests
url = "https://api.orbit.devotel.io/api/v1/cdp/enrichment/{provider_id}/enrich-contact"
payload = {
"contact_id": "<string>",
"company_domain": "<string>",
"overwrite": False
}
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({contact_id: '<string>', company_domain: '<string>', overwrite: false})
};
fetch('https://api.orbit.devotel.io/api/v1/cdp/enrichment/{provider_id}/enrich-contact', 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/enrichment/{provider_id}/enrich-contact",
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([
'contact_id' => '<string>',
'company_domain' => '<string>',
'overwrite' => false
]),
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/enrichment/{provider_id}/enrich-contact"
payload := strings.NewReader("{\n \"contact_id\": \"<string>\",\n \"company_domain\": \"<string>\",\n \"overwrite\": false\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/enrichment/{provider_id}/enrich-contact")
.header("Content-Type", "application/json")
.body("{\n \"contact_id\": \"<string>\",\n \"company_domain\": \"<string>\",\n \"overwrite\": false\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orbit.devotel.io/api/v1/cdp/enrichment/{provider_id}/enrich-contact")
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 \"contact_id\": \"<string>\",\n \"company_domain\": \"<string>\",\n \"overwrite\": false\n}"
response = http.request(request)
puts response.read_body{
"data": {
"provider_id": "orbit_first_party",
"append_backend": "orbit_first_party",
"contact_id": "ctk_01H8A2C3X9",
"applied": [
"company_domain"
],
"skipped": [],
"patch": {
"company_domain": "globex.com"
},
"enrichment": {
"company_domain": "globex.com"
},
"provenance": {
"company_domain": {
"provider": "orbit_first_party",
"enriched_at": "2026-08-07T12:00:00.000Z"
}
},
"persisted": true
},
"meta": {
"request_id": "req_01J8Z9K3P4Q5R6S7T8U9V0W1X2"
}
}{
"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>"
}
}Enrich one contact from an enrichment provider
Run the provider’s live append backend against one contact and persist the appended firmographic / demographic traits onto its attributes.enrichment map with attributes.enrichment_provenance (which provider wrote each value and when). Providers with no live backend return 409; a contact with no resolvable firmographic join key (work email or company domain) returns 400. Idempotent — values already on the profile are skipped unless overwrite is set. Owner / admin / developer with the contacts:write scope.
curl --request POST \
--url https://api.orbit.devotel.io/api/v1/cdp/enrichment/{provider_id}/enrich-contact \
--header 'Content-Type: application/json' \
--data '
{
"contact_id": "<string>",
"company_domain": "<string>",
"overwrite": false
}
'import requests
url = "https://api.orbit.devotel.io/api/v1/cdp/enrichment/{provider_id}/enrich-contact"
payload = {
"contact_id": "<string>",
"company_domain": "<string>",
"overwrite": False
}
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({contact_id: '<string>', company_domain: '<string>', overwrite: false})
};
fetch('https://api.orbit.devotel.io/api/v1/cdp/enrichment/{provider_id}/enrich-contact', 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/enrichment/{provider_id}/enrich-contact",
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([
'contact_id' => '<string>',
'company_domain' => '<string>',
'overwrite' => false
]),
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/enrichment/{provider_id}/enrich-contact"
payload := strings.NewReader("{\n \"contact_id\": \"<string>\",\n \"company_domain\": \"<string>\",\n \"overwrite\": false\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/enrichment/{provider_id}/enrich-contact")
.header("Content-Type", "application/json")
.body("{\n \"contact_id\": \"<string>\",\n \"company_domain\": \"<string>\",\n \"overwrite\": false\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orbit.devotel.io/api/v1/cdp/enrichment/{provider_id}/enrich-contact")
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 \"contact_id\": \"<string>\",\n \"company_domain\": \"<string>\",\n \"overwrite\": false\n}"
response = http.request(request)
puts response.read_body{
"data": {
"provider_id": "orbit_first_party",
"append_backend": "orbit_first_party",
"contact_id": "ctk_01H8A2C3X9",
"applied": [
"company_domain"
],
"skipped": [],
"patch": {
"company_domain": "globex.com"
},
"enrichment": {
"company_domain": "globex.com"
},
"provenance": {
"company_domain": {
"provider": "orbit_first_party",
"enriched_at": "2026-08-07T12:00:00.000Z"
}
},
"persisted": true
},
"meta": {
"request_id": "req_01J8Z9K3P4Q5R6S7T8U9V0W1X2"
}
}{
"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
The contact to enrich.
1 - 120Optional firmographic join key override — used when the contact's email is a personal inbox and the domain cannot be derived from it.
253Replace an enrichment value already present on the profile. Off keeps the idempotent semantics.
Response
The applied / skipped attributes, the raw patch, the resulting enrichment sub-map and its provenance, and whether the contact row was actually written (false on an idempotent no-op).
The applied / skipped attributes, the raw patch, the resulting enrichment sub-map and its provenance, and whether the contact row was actually written (false on an idempotent no-op).