curl --request POST \
--url https://api.orbit.devotel.io/api/v1/cdp/audience/activate/{platform}import requests
url = "https://api.orbit.devotel.io/api/v1/cdp/audience/activate/{platform}"
response = requests.post(url)
print(response.text)const options = {method: 'POST'};
fetch('https://api.orbit.devotel.io/api/v1/cdp/audience/activate/{platform}', 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/activate/{platform}",
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/audience/activate/{platform}"
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/audience/activate/{platform}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orbit.devotel.io/api/v1/cdp/audience/activate/{platform}")
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": {
"id": "act_01J8Z9K3P4Q5R6S7T8U9V0W1X2",
"ts": "2026-08-20T12:00:00.000Z",
"platform": "facebook",
"segment_id": "seg_01J8Z9K3P4Q5R6S7T8U9",
"operation": "add",
"requested": 1000,
"matched": 984,
"skipped": 16,
"batches": 1,
"dispatched": 1,
"dispatch_skipped": 0,
"status": "ok",
"error": null,
"trigger": "manual",
"preflight": {
"blocked": false
}
},
"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>"
}
}Push a member batch to a destination audience (or queue it for approval)
Dispatches an add/remove member batch to one configured ad-platform audience (Facebook, Google, TikTok, LinkedIn, Snapchat, Pinterest, Reddit, The Trade Desk, Criteo). Every identifier is SHA-256-hashed before it leaves the platform — cleartext is never persisted or sent. The destination must be enabled with an audience id and a wired connection (409 otherwise). The pre-activation gate blocks a too-small / low-match / consent-violating batch with 422 unless override_preflight is set; when the maker-checker gate is on (see PUT /audience/approvals/settings), the batch instead queues as a pending approval and answers 202 until a second person approves and the caller re-submits with approval_id. Each run is appended to the activation history. Owner / admin / developer.
curl --request POST \
--url https://api.orbit.devotel.io/api/v1/cdp/audience/activate/{platform}import requests
url = "https://api.orbit.devotel.io/api/v1/cdp/audience/activate/{platform}"
response = requests.post(url)
print(response.text)const options = {method: 'POST'};
fetch('https://api.orbit.devotel.io/api/v1/cdp/audience/activate/{platform}', 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/activate/{platform}",
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/audience/activate/{platform}"
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/audience/activate/{platform}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orbit.devotel.io/api/v1/cdp/audience/activate/{platform}")
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": {
"id": "act_01J8Z9K3P4Q5R6S7T8U9V0W1X2",
"ts": "2026-08-20T12:00:00.000Z",
"platform": "facebook",
"segment_id": "seg_01J8Z9K3P4Q5R6S7T8U9",
"operation": "add",
"requested": 1000,
"matched": 984,
"skipped": 16,
"batches": 1,
"dispatched": 1,
"dispatch_skipped": 0,
"status": "ok",
"error": null,
"trigger": "manual",
"preflight": {
"blocked": false
}
},
"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>"
}
}Path Parameters
Response
The recorded activation run (counts only — member identifiers are never persisted) plus the pre-activation gate verdict. When the maker-checker gate is on and no approval_id was supplied, the response is 202 with { gated, approval_id, status: "pending" } instead.
The recorded activation run (counts only — member identifiers are never persisted) plus the pre-activation gate verdict. When the maker-checker gate is on and no approval_id was supplied, the response is 202 with { gated, approval_id, status: "pending" } instead.