Okta Personal Settings

The Okta Personal Settings API provides operations to manage the Okta Personal settings of your Okta org.

Replace the Okta Personal admin settings
OAuth 2.0: okta.personal.adminSettings.manage

Replaces Okta Personal admin settings in a Workforce org

Request
Request Body schema: application/json
required
enableEnduserEntryPoints
boolean

Allow entry points for an Okta Personal account in a Workforce org

enableExportApps
boolean

Allow users to migrate apps from a Workforce account to an Okta Personal account

Responses
204

No Content

401

Unauthorized

403

Forbidden

404

Not Found

429

Too Many Requests

put/okta-personal-settings/api/v1/edit-feature
Request samples
application/json
{
  • "enableExportApps": true,
  • "enableEnduserEntryPoints": true
}
Response samples
application/json
{
  • "errorCode": "E0000015",
  • "errorSummary": "You do not have permission to access the feature you are requesting",
  • "errorLink": "E0000015",
  • "errorId": "oaeStOuPPxDRUm3PJhf-tL7bQ",
  • "errorCauses": [ ]
}

List all blocked email domains
OAuth 2.0: okta.personal.adminSettings.read

Lists all blocked email domains which are excluded from app migration

Responses
200

OK

401

Unauthorized

403

Forbidden

404

Not Found

429

Too Many Requests

get/okta-personal-settings/api/v1/export-blocklists
Request samples
Response samples
application/json
{
  • "domains": [
    • "yahoo.com",
    • "google.com"
    ]
}

Replace the blocked email domains
OAuth 2.0: okta.personal.adminSettings.manage

Replaces the list of blocked email domains which are excluded from app migration

Request
Request Body schema: application/json
required
domains
Array of arrays

List of blocked email domains

Responses
204

No Content

401

Unauthorized

403

Forbidden

404

Not Found

429

Too Many Requests

put/okta-personal-settings/api/v1/export-blocklists
Request samples
application/json
{
  • "domains": [
    • "yahoo.com",
    • "google.com"
    ]
}
Response samples
application/json
{
  • "errorCode": "E0000015",
  • "errorSummary": "You do not have permission to access the feature you are requesting",
  • "errorLink": "E0000015",
  • "errorId": "oaeStOuPPxDRUm3PJhf-tL7bQ",
  • "errorCauses": [ ]
}