curl --request GET \
--url 'https://api.example.com/chat-widget/settings' \
--header 'x-widget-token: YOUR_API_KEY'
{
"settings": {
"companyName": "Acme Outdoors",
"messageEndpoint": "string",
"theme": {
"primary": "string",
"secondary": "string",
"text": "Two-person tent, green — replacement for damaged pole set.",
"accent": "string",
"hover": "string"
}
},
"updated_at": "2026-08-31T14:22:05Z"
}
Tenant settings (optional)
Fetched when settingsEndpoint is set. Send Authorization: ApiKey <key> (or Bearer <key>); x-api-key is also accepted.
GET
/
chat-widget
/
settings
curl --request GET \
--url 'https://api.example.com/chat-widget/settings' \
--header 'x-widget-token: YOUR_API_KEY'
{
"settings": {
"companyName": "Acme Outdoors",
"messageEndpoint": "string",
"theme": {
"primary": "string",
"secondary": "string",
"text": "Two-person tent, green — replacement for damaged pole set.",
"accent": "string",
"hover": "string"
}
},
"updated_at": "2026-08-31T14:22:05Z"
}
Fetched when
settingsEndpoint is set. Send Authorization: ApiKey <key> (or Bearer <key>); x-api-key is also accepted.
Response
Settings
string (date-time)
Status codes
| Code | Meaning |
|---|---|
200 | OK |
400 | Error |
401 | Error |
curl --request GET \
--url 'https://api.example.com/chat-widget/settings' \
--header 'x-widget-token: YOUR_API_KEY'
{
"settings": {
"companyName": "Acme Outdoors",
"messageEndpoint": "string",
"theme": {
"primary": "string",
"secondary": "string",
"text": "Two-person tent, green — replacement for damaged pole set.",
"accent": "string",
"hover": "string"
}
},
"updated_at": "2026-08-31T14:22:05Z"
}
Last modified on August 31, 2026