<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-M74D8PB" height="0" width="0" style="display:none;visibility:hidden">
Loading
Skip to NavigationSkip to Main Content
Remove Display Language Setting for Brand
Insights and Reporting
Okta Classic Engine
Okta Identity Engine
Overview

After configuring a specific language in Customizations > Brands > Settings, the Admin Console does not provide an option to deselect the language or reset the field to its default state.

Applies To
  • Brands
  • Okta Management API
Cause

The Okta Admin Console User Interface (UI) enforces a selection for the Display Language field once it has been modified. It does not support clearing this selection or setting it to a null value directly through the browser interface.

Solution

To change the Display Language to an empty value (null), use the Okta Management API.


Prerequisites

  • An API client (for example, Postman or cURL).

  • An API Token or an OAuth token with okta.brands.manage scope.

Procedure

  1. In the Admin Console, go to Customizations > Brands.

  2. Select the target brand.

  3. Copy the brandId from the browser URL.

  4. Perform a GET request to retrieve the current brand object. This ensures the current values for all other required fields are included in the update.

    Method: GET
    Endpoint: /api/v1/brands/<brandId>
    
  5. Copy the JSON response from the previous step.

  6. Locate the locale key and change the value to null.

    "locale": null
    
  7. Perform a PUT request to apply the change.

    Method: PUT
    Endpoint: /api/v1/brands/<brandId>
    Headers: Content-Type: application/json
    Body: Paste the modified JSON payload containing "locale": null
    
  8. Once the request is processed, the Display Language setting for the brand is cleared.

Loading
Remove Display Language Setting for Brand