Read every ad-platform audience destination mapping
curl --request GET \
--url https://api.orbit.devotel.io/api/v1/cdp/audience/configimport requests
url = "https://api.orbit.devotel.io/api/v1/cdp/audience/config"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.orbit.devotel.io/api/v1/cdp/audience/config', 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/audience/config",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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/audience/config"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.orbit.devotel.io/api/v1/cdp/audience/config")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orbit.devotel.io/api/v1/cdp/audience/config")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"data": {
"platforms": [
{
"platform": "facebook",
"enabled": true,
"configured": true,
"nango_connection_id": "conn_facebook_2026",
"audience_id": "aud_1234567890",
"segment_id": "seg_01J8Z9K3P4Q5R6S7T8U9",
"last_activation_at": "2026-08-19T09:31:00.000Z",
"last_activation_status": "ok",
"preflight": {
"min_members": 100,
"min_match_rate": 0.6,
"max_consent_violations": 0,
"max_suppressed": 0
},
"holdout_pct": 5,
"schedule_minutes": 60
},
{
"platform": "google",
"enabled": false,
"configured": false,
"nango_connection_id": null,
"audience_id": null,
"segment_id": null,
"last_activation_at": null,
"last_activation_status": null,
"preflight": {
"min_members": 100,
"min_match_rate": 0.6,
"max_consent_violations": 0,
"max_suppressed": 0
},
"holdout_pct": 0,
"schedule_minutes": null
}
]
},
"meta": {
"request_id": "req_01J8Z9K3P4Q5R6S7T8U9V0W1X2",
"timestamp": "2026-08-20T12:00: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
Read every ad-platform audience destination mapping
Returns one mapping row per supported paid-media destination (Facebook, Google, TikTok, LinkedIn, Snapchat, Pinterest, Reddit, The Trade Desk, Criteo): enabled flag, connection reference, destination audience id, source segment id, last-activation status, pre-activation gate thresholds, holdout percent, and scheduled-sync cadence. Call this to render the destinations panel; update one mapping via PATCH /audience/config/:platform. No secrets exist on this surface (connection references are identifiers, not keys). Owner / admin / developer.
GET
/
api
/
v1
/
cdp
/
audience
/
config
Read every ad-platform audience destination mapping
curl --request GET \
--url https://api.orbit.devotel.io/api/v1/cdp/audience/configimport requests
url = "https://api.orbit.devotel.io/api/v1/cdp/audience/config"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.orbit.devotel.io/api/v1/cdp/audience/config', 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/audience/config",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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/audience/config"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.orbit.devotel.io/api/v1/cdp/audience/config")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orbit.devotel.io/api/v1/cdp/audience/config")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"data": {
"platforms": [
{
"platform": "facebook",
"enabled": true,
"configured": true,
"nango_connection_id": "conn_facebook_2026",
"audience_id": "aud_1234567890",
"segment_id": "seg_01J8Z9K3P4Q5R6S7T8U9",
"last_activation_at": "2026-08-19T09:31:00.000Z",
"last_activation_status": "ok",
"preflight": {
"min_members": 100,
"min_match_rate": 0.6,
"max_consent_violations": 0,
"max_suppressed": 0
},
"holdout_pct": 5,
"schedule_minutes": 60
},
{
"platform": "google",
"enabled": false,
"configured": false,
"nango_connection_id": null,
"audience_id": null,
"segment_id": null,
"last_activation_at": null,
"last_activation_status": null,
"preflight": {
"min_members": 100,
"min_match_rate": 0.6,
"max_consent_violations": 0,
"max_suppressed": 0
},
"holdout_pct": 0,
"schedule_minutes": null
}
]
},
"meta": {
"request_id": "req_01J8Z9K3P4Q5R6S7T8U9V0W1X2",
"timestamp": "2026-08-20T12:00: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
Per-platform destination mappings with resolved gate thresholds and last-activation status.
Per-platform destination mappings with resolved gate thresholds and last-activation status.