List persisted CDP offers
curl --request GET \
--url https://api.orbit.devotel.io/api/v1/cdp/offersimport requests
url = "https://api.orbit.devotel.io/api/v1/cdp/offers"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.orbit.devotel.io/api/v1/cdp/offers', 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/offers",
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/offers"
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/offers")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orbit.devotel.io/api/v1/cdp/offers")
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": {
"data": [
{
"id": "cdpOffer_01J8Z9K3P4Q5R6S7T8U9V0W1",
"offer_id": "welcome-back-10",
"value": 10,
"priority": 5,
"constraints": {
"max_per_contact": 1,
"budget_remaining": 5000,
"exclusivity_group": "winback"
},
"active": true,
"created_by": "user_2abcDEFghiJKL",
"created_at": "2026-08-01T09:30:00.000Z"
},
{
"id": "cdpOffer_01J8Z9K3P4Q5R6S7T8U9V0W2",
"offer_id": "free-trial-upgrade",
"value": 25,
"priority": null,
"constraints": {
"channels": [
"sms",
"email"
]
},
"active": false,
"created_by": "user_2abcDEFghiJKL",
"created_at": "2026-08-02T10:15:00.000Z"
}
],
"pagination": {
"cursor": null,
"has_more": false
}
},
"meta": {
"request_id": "req_01J8Z9K3P4Q5R6S7T8U9V0W1X2",
"timestamp": "2026-08-07T12: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
List persisted CDP offers
Lists the tenant’s persisted CDP offer/promo catalog — the durable, server-side record of offers that /cdp/offers/decide can resolve eligibility constraints against (active window, per-contact cap, budget, mutual-exclusivity group, segment/channel/locale/cart/SKU gates). Use it to inspect and manage the catalog directly instead of re-transmitting it on every decision request. Keyset-paginates on offer_id via cursor and limit; pass active_only=true to filter to currently-active offers. Owner / admin / developer only.
GET
/
api
/
v1
/
cdp
/
offers
List persisted CDP offers
curl --request GET \
--url https://api.orbit.devotel.io/api/v1/cdp/offersimport requests
url = "https://api.orbit.devotel.io/api/v1/cdp/offers"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.orbit.devotel.io/api/v1/cdp/offers', 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/offers",
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/offers"
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/offers")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orbit.devotel.io/api/v1/cdp/offers")
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": {
"data": [
{
"id": "cdpOffer_01J8Z9K3P4Q5R6S7T8U9V0W1",
"offer_id": "welcome-back-10",
"value": 10,
"priority": 5,
"constraints": {
"max_per_contact": 1,
"budget_remaining": 5000,
"exclusivity_group": "winback"
},
"active": true,
"created_by": "user_2abcDEFghiJKL",
"created_at": "2026-08-01T09:30:00.000Z"
},
{
"id": "cdpOffer_01J8Z9K3P4Q5R6S7T8U9V0W2",
"offer_id": "free-trial-upgrade",
"value": 25,
"priority": null,
"constraints": {
"channels": [
"sms",
"email"
]
},
"active": false,
"created_by": "user_2abcDEFghiJKL",
"created_at": "2026-08-02T10:15:00.000Z"
}
],
"pagination": {
"cursor": null,
"has_more": false
}
},
"meta": {
"request_id": "req_01J8Z9K3P4Q5R6S7T8U9V0W1X2",
"timestamp": "2026-08-07T12: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
A page of persisted offers plus the keyset pagination cursors.
A page of persisted offers plus the keyset pagination cursors.