v1
latestOpenAPI 3.0.32026-08-06138294578.6 KBOrganization
Create Organization
Creates a new organization under the calling partner account, optionally configuring SSO or OIDC at creation time.
🚧 Requires partner key
This endpoint is only accessible using partner keys.
SSO and OIDC settings supplied at creation time can be updated later via PUT /api/organizations/{id}.
post/api/organizations
Headers
X-Polytomic-Versionstring
Request body
Example request
{
"client_id": "client_id",
"client_secret": "client_secret",
"issuer": "https://example.com",
"name": "My Organization",
"sso_domain": "example.com",
"sso_org_id": "123456"
}Response
OK
Example response
{
"data": {
"issuer": "https://example.com",
"name": "My Organization",
"sso_domain": "example.com",
"sso_org_id": "123456"
}
}