Org Admin Settings

The Org Admin Settings API provides operations to manage the admin settings for your Okta org.

Retrieve the Org Third-Party Admin Setting
OAuth 2.0: okta.orgs.read

Retrieves the Third-Party Admin Setting. See Configure third-party administrators in the Okta product documentation.

Responses
200

Success

403

Forbidden

429

Too Many Requests

get/api/v1/org/orgSettings/thirdPartyAdminSetting
Request samples
Response samples
application/json
{
  • "thirdPartyAdmin": false
}

Update the Org Third-Party Admin Setting
OAuth 2.0: okta.orgs.manage

Updates the Third-Party Admin Setting. This setting allows third-party admins to perform administrative actions in the Admin Console, but they can't do any of the following:

  • Receive Okta admin email notifications
  • Contact Okta support
  • Sign in to the Okta Help Center

See Configure third-party administrators in the Okta product documentation.

Request
Request Body schema: application/json
required
thirdPartyAdmin
boolean

Indicates if third-party admin is enabled

Responses
200

Success

403

Forbidden

429

Too Many Requests

post/api/v1/org/orgSettings/thirdPartyAdminSetting
Request samples
application/json
{
  • "thirdPartyAdmin": false
}
Response samples
application/json
{
  • "thirdPartyAdmin": false
}

Retrieve the Default Public Client App Role Setting
OAuth 2.0: okta.orgs.read

Retrieves the org setting to assign the Super Admin role to new public client apps

Responses
200

Success

403

Forbidden

429

Too Many Requests

get/api/v1/org/settings/clientPrivilegesSetting
Request samples
Response samples
application/json
{
  • "clientPrivilegesSetting": true
}

Assign the Default Public Client App Role Setting
OAuth 2.0: okta.orgs.manage

Assigns the Super Admin role as the default role for new public client apps

Request
Request Body schema: application/json
clientPrivilegesSetting
boolean

If true, assigns the super admin role by default to new public client apps

Responses
200

Success

403

Forbidden

429

Too Many Requests

put/api/v1/org/settings/clientPrivilegesSetting
Request samples
application/json
{
  • "clientPrivilegesSetting": true
}
Response samples
application/json
{
  • "clientPrivilegesSetting": true
}