Update AI disclosure settings
curl --request PUT \
--url https://api.orbit.devotel.io/api/v1/compliance/ai-disclosure/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"default_enabled": true,
"chat_notice_text": "You are chatting with an AI assistant.",
"eu_ai_act_enabled": true
}
'import requests
url = "https://api.orbit.devotel.io/api/v1/compliance/ai-disclosure/"
payload = {
"default_enabled": True,
"chat_notice_text": "You are chatting with an AI assistant.",
"eu_ai_act_enabled": True
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
default_enabled: true,
chat_notice_text: 'You are chatting with an AI assistant.',
eu_ai_act_enabled: true
})
};
fetch('https://api.orbit.devotel.io/api/v1/compliance/ai-disclosure/', 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/compliance/ai-disclosure/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'default_enabled' => true,
'chat_notice_text' => 'You are chatting with an AI assistant.',
'eu_ai_act_enabled' => true
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.orbit.devotel.io/api/v1/compliance/ai-disclosure/"
payload := strings.NewReader("{\n \"default_enabled\": true,\n \"chat_notice_text\": \"You are chatting with an AI assistant.\",\n \"eu_ai_act_enabled\": true\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://api.orbit.devotel.io/api/v1/compliance/ai-disclosure/")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"default_enabled\": true,\n \"chat_notice_text\": \"You are chatting with an AI assistant.\",\n \"eu_ai_act_enabled\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orbit.devotel.io/api/v1/compliance/ai-disclosure/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"default_enabled\": true,\n \"chat_notice_text\": \"You are chatting with an AI assistant.\",\n \"eu_ai_act_enabled\": true\n}"
response = http.request(request)
puts response.read_body{
"data": {
"settings": {
"id": "aidisc_default",
"defaultEnabled": true,
"chatNoticeText": "You are chatting with an AI assistant.",
"voiceIntroAudioUrl": null,
"voiceIntroText": "This call may be handled by an AI assistant.",
"minorBreakReminderMinutes": 30,
"marketingDisclosureRequired": false,
"krDisclosureEnabled": false,
"caMinorReminderEnabled": true,
"euAiActEnabled": true
}
},
"meta": {
"request_id": "req_9s8d7f6g5h4j",
"timestamp": "2026-08-03T12:34:56.000Z"
}
}Compliance
Update AI disclosure settings
Updates the tenant’s AI disclosure settings singleton and invalidates the cache the agent-runtime / voice-gateway read from. Only the fields you send are changed (partial update); omitted fields keep their current value. Writing emits a compliance.ai_disclosure_updated audit row. Owner/admin only.
PUT
/
api
/
v1
/
compliance
/
ai-disclosure
/
Update AI disclosure settings
curl --request PUT \
--url https://api.orbit.devotel.io/api/v1/compliance/ai-disclosure/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"default_enabled": true,
"chat_notice_text": "You are chatting with an AI assistant.",
"eu_ai_act_enabled": true
}
'import requests
url = "https://api.orbit.devotel.io/api/v1/compliance/ai-disclosure/"
payload = {
"default_enabled": True,
"chat_notice_text": "You are chatting with an AI assistant.",
"eu_ai_act_enabled": True
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
default_enabled: true,
chat_notice_text: 'You are chatting with an AI assistant.',
eu_ai_act_enabled: true
})
};
fetch('https://api.orbit.devotel.io/api/v1/compliance/ai-disclosure/', 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/compliance/ai-disclosure/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'default_enabled' => true,
'chat_notice_text' => 'You are chatting with an AI assistant.',
'eu_ai_act_enabled' => true
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.orbit.devotel.io/api/v1/compliance/ai-disclosure/"
payload := strings.NewReader("{\n \"default_enabled\": true,\n \"chat_notice_text\": \"You are chatting with an AI assistant.\",\n \"eu_ai_act_enabled\": true\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://api.orbit.devotel.io/api/v1/compliance/ai-disclosure/")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"default_enabled\": true,\n \"chat_notice_text\": \"You are chatting with an AI assistant.\",\n \"eu_ai_act_enabled\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orbit.devotel.io/api/v1/compliance/ai-disclosure/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"default_enabled\": true,\n \"chat_notice_text\": \"You are chatting with an AI assistant.\",\n \"eu_ai_act_enabled\": true\n}"
response = http.request(request)
puts response.read_body{
"data": {
"settings": {
"id": "aidisc_default",
"defaultEnabled": true,
"chatNoticeText": "You are chatting with an AI assistant.",
"voiceIntroAudioUrl": null,
"voiceIntroText": "This call may be handled by an AI assistant.",
"minorBreakReminderMinutes": 30,
"marketingDisclosureRequired": false,
"krDisclosureEnabled": false,
"caMinorReminderEnabled": true,
"euAiActEnabled": true
}
},
"meta": {
"request_id": "req_9s8d7f6g5h4j",
"timestamp": "2026-08-03T12:34:56.000Z"
}
}Authorizations
BearerApiKey
Dashboard JWT token from Clerk
Body
application/json
Required string length:
1 - 2000HTTPS URL of the audio clip played as the voice intro, or empty/null to clear.
Required string length:
1 - 2000Required range:
1 <= x <= 1440⌘I