Skip to content

Get legacy tenant settings.

Deprecated
GET
/api/admin/settings
Code sample: Shell / cURL
curl --request GET \
--url https://auth.example.com/api/admin/settings \
--header 'Authorization: Bearer <token>'

List Settings in the Admin Miscellaneous area. Use this operation to retrieve setting data without mutating tenant state.

X-Tenant-Id
string

Tenant selector for multi-tenant admin requests.

Legacy settings response.

Media type application/json
object
settings
required
object
key
additional properties
key
additional properties
Example
{
"settings": {
"general": {
"siteName": "Authrim"
},
"security": {
"requireMfa": false
},
"policy": {
"enableAbac": false
},
"loginUI": {
"theme": "light",
"supportedLocales": [
"en",
"ja"
]
}
}
}