Skip to content

Get all client-scoped settings.

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

Get Setting in the Clients area. Use this operation to retrieve setting data without mutating tenant state.

clientId
required
string
X-Tenant-Id
string

Tenant selector for multi-tenant admin requests.

Settings v2 read response.

Media type application/json

Settings v2 category read result returned by the settings manager. Includes category values, inheritance metadata, and version information when available.

object
key
additional properties
Example
{
"category": "oauth",
"scope": {
"type": "tenant",
"id": "tenant_123"
},
"values": {
"oauth.require_pkce": true
},
"version": "v1"
}