v1

latestOpenAPI 3.1.0Apache 2.02026-07-245981,1853.0 MB
Organizations

Get List of Organizations

Use this API to retrieve a list of all organizations within the organizational hierarchy.

get/api/access/v1/external/organizations

Response

OK

organizationIdstring uuid

The unique identifier of the organization.

externalIdstring

The external identifier of the organization.

parentOrganizationIdstring uuid

The unique identifier of the parent organization.

parentExternalIdstring

The external identifier of the parent organization.

namestring

The name of the organization.

defaultApproverstring

The email address of the default approver for the organization.

defaultLanguageCodestring

The ISO language code for the organization's default language (for example: en, fr, de, es, zh).

descriptionstring

A brief description of the organization.

childrenobject[]

The list of child organizations in the hierarchy.

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",
  "children": [
    {
      "children": [],
      "defaultApprover": "user2@onetrust.com",
      "defaultLanguageCode": "en",
      "description": "Global Privacy Compliance",
      "externalId": "ext-org-123",
      "name": "DataGuidance",
      "parentExternalId": "ext-org-parent-456"
    }
  ]
}