Approve or reject a queued activation request
curl --request POST \
--url https://api.orbit.devotel.io/api/v1/cdp/audience/approvals/{id}/decisionimport requests
url = "https://api.orbit.devotel.io/api/v1/cdp/audience/approvals/{id}/decision"
response = requests.post(url)
print(response.text)const options = {method: 'POST'};
fetch('https://api.orbit.devotel.io/api/v1/cdp/audience/approvals/{id}/decision', 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/approvals/{id}/decision",
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/approvals/{id}/decision"
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/approvals/{id}/decision")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orbit.devotel.io/api/v1/cdp/audience/approvals/{id}/decision")
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": "apr_01J9A1B2C3D4E5F6G7H8I9J0",
"ts": "2026-08-20T11:45:00.000Z",
"platform": "facebook",
"segment_id": "seg_01J8Z9K3P4Q5R6S7T8U9",
"operation": "add",
"audience_id": "aud_1234567890",
"requested_by_user_id": "usr_01J8Z9K3P4Q5R6S7T8U9",
"requested": 1000,
"matched": 984,
"holdout_pct": 5,
"preflight_blocked": false,
"failing_checks": [],
"batch_fingerprint": "9f2b31",
"note": "Q3 reactivation cohort push",
"status": "approved",
"decided_by_user_id": "usr_02K9A0L4Q5R6S7T8U9W0",
"decided_at": "2026-08-20T12:10:00.000Z",
"decision_reason": "Segment reviewed — cohort is consented and in scope",
"consumed_at": null,
"activation_id": null
},
"meta": {
"request_id": "req_01J8Z9K3P4Q5R6S7T8U9V0W1X2",
"timestamp": "2026-08-20T12:10: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
Approve or reject a queued activation request
Records a supervisor’s approve/reject verdict on a pending activation approval (four-eyes: the decider must be a DIFFERENT user than the requester, and only an owner / admin / superAdmin may decide). An approved request is then dispatched by the original caller re-submitting POST /audience/activate/:platform with approval_id. 403 without the supervisor role or for a self-decision, 404 if the request rolled off the bounded queue, 409 when it was already decided. Optional reason is surfaced on the approval row and the audit log.
POST
/
api
/
v1
/
cdp
/
audience
/
approvals
/
{id}
/
decision
Approve or reject a queued activation request
curl --request POST \
--url https://api.orbit.devotel.io/api/v1/cdp/audience/approvals/{id}/decisionimport requests
url = "https://api.orbit.devotel.io/api/v1/cdp/audience/approvals/{id}/decision"
response = requests.post(url)
print(response.text)const options = {method: 'POST'};
fetch('https://api.orbit.devotel.io/api/v1/cdp/audience/approvals/{id}/decision', 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/approvals/{id}/decision",
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/approvals/{id}/decision"
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/approvals/{id}/decision")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orbit.devotel.io/api/v1/cdp/audience/approvals/{id}/decision")
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": "apr_01J9A1B2C3D4E5F6G7H8I9J0",
"ts": "2026-08-20T11:45:00.000Z",
"platform": "facebook",
"segment_id": "seg_01J8Z9K3P4Q5R6S7T8U9",
"operation": "add",
"audience_id": "aud_1234567890",
"requested_by_user_id": "usr_01J8Z9K3P4Q5R6S7T8U9",
"requested": 1000,
"matched": 984,
"holdout_pct": 5,
"preflight_blocked": false,
"failing_checks": [],
"batch_fingerprint": "9f2b31",
"note": "Q3 reactivation cohort push",
"status": "approved",
"decided_by_user_id": "usr_02K9A0L4Q5R6S7T8U9W0",
"decided_at": "2026-08-20T12:10:00.000Z",
"decision_reason": "Segment reviewed — cohort is consented and in scope",
"consumed_at": null,
"activation_id": null
},
"meta": {
"request_id": "req_01J8Z9K3P4Q5R6S7T8U9V0W1X2",
"timestamp": "2026-08-20T12:10: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 approval row with the recorded decision.
The approval row with the recorded decision.