# Realm settings

# Getting current realm settings

To get the current realm settings, use the following endpoint:

GET /api/realm

On success the response will be the default API response with the data being a realm entity in the following format:

{
    "realmName": "string",
    "displayName": "string",
    "logoURI": "string",
    "maxProfiles": 0,
    "maxValid": 0
}

# Updating realm settings Admin only

To update the current realm settings, use the following endpoint:

PUT /api/realm

The request body must include a JSON object with the following fields:

{
    "displayName": "string",
    "logoURI": "string",
    "maxProfiles": 0,
    "maxValid": 0
}

On success the response will be true.