Retrieve admin area settings
/settings/admin-areaReturns the appearance settings of the account's admin area: logo, icon, and accent color.
The response includes an ETag representing the current revision. Send this value in the If-Match header when updating these settings to avoid overwriting a newer version.
Autonomous mode: the API credential secret, sent as a bearer token. Credential secrets are identified by a fixed prefix.
In: header
Response Body
application/json
application/json
application/json
curl -X GET "https://example.com/settings/admin-area"{ "data": { "accent_color": "string", "defaults": {}, "icon": { "file_id": "string", "url": "string" }, "logo": { "file_id": "string", "url": "string" }, "object": "settings", "propagation": {}, "replica": {}, "revision": "string" }}General settings
General settings in API v3: retrieve admin area settings, update admin area settings, retrieve app settings, update app settings, retrieve branding settings, update branding settings, retrieve embedded page settings, update embedded page settings, retrieve gamification settings, update gamification settings, retrieve platform settings, update platform settings, retrieve sharing settings, update sharing settings.
Update admin area settings PATCH
Updates the admin area settings. Only the fields included in the request are changed: setting a field to `null` clears its configured value and restores the default, and omitted fields are left unchanged. Images are referenced by the ID of a file that belongs to the account. To avoid overwriting a newer version, send the `ETag` returned by the retrieve operation in the `If-Match` header. The header is optional; when it is omitted, the update is applied to the current revision.