Note: You need to have the Platform—Multi-org Deployment product to enable the Org Creator API feature. Contact your Okta account team for more information.
The Org Creator API provides an operation to create Okta orgs (child orgs) based on features from your current org (the parent org). See Org Creator.
okta.orgs.manage
Creates an org (child org) that has the same features as the current requesting org (parent org). A child org inherits any new features added to the parent org, but new features added to the child org aren't propagated back to the parent org.
Notes:
- Some features associated with products, such as Atspoke, Workflows, and Okta Identity Governance, aren't propagated to the child org.
- Wait at least 30 seconds after a 201-Created response before you make API requests to the new child org.
- For rate limits, see Org creation rate limits.
required | object (OrgCreationAdmin) Profile and credential information for the first super admin user of the child org. If you plan to configure and manage the org programmatically, create a system user with a dedicated email address and a strong password.
| ||||||||||||||||||||||
| |||||||||||||||||||||||
edition required | string Edition for the org. | ||||||||||||||||||||||
name required | string <utf-8> [ 1 .. 100 ] Unique name of the org.
This name appears in the HTML | ||||||||||||||||||||||
subdomain required | string [ 1 .. 57 ] Subdomain of the org. Must be unique and include no spaces. | ||||||||||||||||||||||
website | string Default website for the org |
Created
Bad Request
Unauthorized
Forbidden
Too Many Requests
Internal Server Error
{- "subdomain": "my-child-org-1",
- "name": "My Child Org 1",
- "edition": "SKU",
- "admin": {
- "profile": {
- "firstName": "First",
- "lastName": "Last",
- "email": "FirstLast@example.com",
- "login": "FirstLast@example.com",
- "mobilePhone": null
}, - "credentials": {
- "password": {
- "value": "XXXX"
}
}
}
}
{- "id": "00o1n8sbwArJ7OQRw406",
- "subdomain": "my-child-org-1",
- "name": "My Child Org 1",
- "status": "ACTIVE",
- "edition": "SKU",
- "expiresAt": null,
- "created": "2024-08-27T15:42:52.000Z",
- "lastUpdated": "2024-08-27T15:42:56.000Z",
- "licensing": {
- "apps": [ ]
}, - "settings": {
- "app": {
- "errorRedirectUrl": null,
- "interstitialUrl": null,
- "interstitialMinWaitTime": 1200
}, - "userAccount": {
- "attributes": {
- "secondaryEmail": true,
- "secondaryImage": true
}
}, - "portal": {
- "errorRedirectUrl": null,
- "signOutUrl": null
}, - "logs": {
- "level": "INFO"
}
}, - "token": "XXXXXXXXXXXXX",
- "tokenType": "SSWS",
- "_links": {
- "administrator": {
},
}
}