v1
latestOpenAPI 3.0.32026-08-06138294578.6 KBOrganization
Update Organization
Updates an organization's name and SSO or OIDC configuration.
🚧 Requires partner key
This endpoint is only accessible using partner keys.
📘 SSO and OIDC configuration is replaced in full on each update. Include all desired settings in the request body, not just the fields you want to change.
put/api/organizations/{id}
Path parameters
idstring uuid required
Unique identifier of the organization to update.
Example:248df4b7-aa70-47b8-a036-33ac447e668d
Unique identifier of the organization to update.
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"
}
}