Organizations
Create Organization
Use this API to create an organization within the organizational hierarchy.
🗒 Things to Know
- The organization will be created as a child of the organization specified in the parentExternalId parameter. If a parentExternalIdvalue is not specified in the request, the organization will be created as a child of the root organization.
post/api/access/v1/external/organizations
Request body
Example request
{
"externalId": "ext-org-123",
"parentExternalId": "ext-org-parent-456",
"parentOrganizationId": "123e4567-e89b-12d3-a456-426614174002",
"defaultLanguageCode": "en",
"name": "OneTrust",
"defaultApprover": "approver@onetrust.com",
"description": "Privacy, Security and Third-Party Risk Software"
}Response
Created
Example response
{
"organizationId": "123e4567-e89b-12d3-a456-426614174000",
"externalId": "ext-org-123",
"parentOrganizationId": "123e4567-e89b-12d3-a456-426614174999",
"parentExternalId": "ext-org-parent-456",
"name": "OneTrust",
"defaultApprover": "approver@onetrust.com",
"defaultLanguageCode": "en",
"description": "Privacy, Security and Third-Party Risk Software"
}