Read the published interaction data-share schema contracts
curl --request GET \
--url https://api.orbit.devotel.io/api/v1/cdp/interaction-data-share/schema-contractimport requests
url = "https://api.orbit.devotel.io/api/v1/cdp/interaction-data-share/schema-contract"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.orbit.devotel.io/api/v1/cdp/interaction-data-share/schema-contract', 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/interaction-data-share/schema-contract",
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/interaction-data-share/schema-contract"
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/interaction-data-share/schema-contract")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orbit.devotel.io/api/v1/cdp/interaction-data-share/schema-contract")
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": {
"latest_version": "v2",
"versions": [
{
"version": "v1",
"datasets": {
"calls": [
{
"name": "id",
"type": "string",
"description": "Call log id."
},
{
"name": "duration_seconds",
"type": "integer",
"description": "Billable call duration in seconds."
},
{
"name": "created_at",
"type": "timestamp",
"description": "Call creation time (UTC)."
}
],
"messages": [
{
"name": "id",
"type": "string",
"description": "Message id."
},
{
"name": "channel",
"type": "string",
"description": "sms | whatsapp | email | …"
},
{
"name": "status",
"type": "string",
"description": "Terminal delivery status."
}
],
"conversations": [
{
"name": "id",
"type": "string",
"description": "Conversation id."
},
{
"name": "status",
"type": "string",
"description": "open | closed | …"
}
]
}
}
]
},
"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 the published interaction data-share schema contracts
Returns the read-only reference of every published schema-contract VERSION and the exact field list per interaction dataset (calls / messages / conversations) it exposes — no tenant state, a fixed, versioned registry. Use it to pin a contract version in your warehouse-side dbt model so an unannounced column never appears or disappears. Fields are additive-only across versions: v1 is a strict subset of v2. Owner / admin / developer only.
GET
/
api
/
v1
/
cdp
/
interaction-data-share
/
schema-contract
Read the published interaction data-share schema contracts
curl --request GET \
--url https://api.orbit.devotel.io/api/v1/cdp/interaction-data-share/schema-contractimport requests
url = "https://api.orbit.devotel.io/api/v1/cdp/interaction-data-share/schema-contract"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.orbit.devotel.io/api/v1/cdp/interaction-data-share/schema-contract', 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/interaction-data-share/schema-contract",
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/interaction-data-share/schema-contract"
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/interaction-data-share/schema-contract")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orbit.devotel.io/api/v1/cdp/interaction-data-share/schema-contract")
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": {
"latest_version": "v2",
"versions": [
{
"version": "v1",
"datasets": {
"calls": [
{
"name": "id",
"type": "string",
"description": "Call log id."
},
{
"name": "duration_seconds",
"type": "integer",
"description": "Billable call duration in seconds."
},
{
"name": "created_at",
"type": "timestamp",
"description": "Call creation time (UTC)."
}
],
"messages": [
{
"name": "id",
"type": "string",
"description": "Message id."
},
{
"name": "channel",
"type": "string",
"description": "sms | whatsapp | email | …"
},
{
"name": "status",
"type": "string",
"description": "Terminal delivery status."
}
],
"conversations": [
{
"name": "id",
"type": "string",
"description": "Conversation id."
},
{
"name": "status",
"type": "string",
"description": "open | closed | …"
}
]
}
}
]
},
"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
The latest published contract version plus every published version with its per-dataset field list (name, type, description).
The latest published contract version plus every published version with its per-dataset field list (name, type, description).