Gets a list of Organizations

get

/access-governance/service-administration/20250331/organizations

Returns a list of Organizations with support for pagination.

Request

Query Parameters
  • Collection Format: multi
    Maximum Number of Items: 5
    The list of keywords to filter on
  • Minimum Value: 1
    Maximum Value: 1000
    The maximum number of items to return.
    Default Value: 10
  • Minimum Length: 1
    A token representing the position at which to start retrieving results. This must come from the `opc-next-page` header field of a previous response.
  • The field to sort by. Only one sort order may be provided. Default order for timeUpdated is descending. Default order for name is ascending.
    Allowed Values: [ "createdBy", "displayName", "name", "timeUpdated" ]
  • The sort order to use, either 'ASC' or 'DESC'.
    Allowed Values: [ "ASC", "DESC" ]
  • A filter to return only organizations that match the give status or ALL to match all organizations.
    Allowed Values: [ "ALL", "ACTIVE", "DRAFT", "INACTIVE" ]
Header Parameters
  • The client request ID for tracing. The only valid characters for request IDs are letters, numbers, underscore, and dash.
Back to Top

Response

Supported Media Types

200 Response

A page of Organization summary objects.
Headers
  • For pagination of a list of items. When paging through a list, if this header appears in the response, then a partial list might have been returned. Include this value as the `page` parameter for the subsequent GET request to get the next batch of items.
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : OrganizationCollection
Type: object
Contains summarized information about Organizations.
Show Source
Nested Schema : items
Type: array
List containing summarized information about Organizations.
Show Source
Nested Schema : OrganizationSummary
Type: object
Summarized Organization model.
Show Source
Nested Schema : Info
Type: object
Generic information object.
Show Source
Nested Schema : User
Type: object
Owner of a resource.
Show Source
Nested Schema : tags
Type: array
List of tags attached to the Organization.
Show Source

400 Response

Bad Request
Headers
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : Error
Type: object
Error Information.
Show Source

401 Response

Unauthorized
Headers
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : Error
Type: object
Error Information.
Show Source

404 Response

Not Found
Headers
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : Error
Type: object
Error Information.
Show Source

429 Response

Too Many Requests
Headers
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : Error
Type: object
Error Information.
Show Source

500 Response

Internal Server Error
Headers
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : Error
Type: object
Error Information.
Show Source

Default Response

Unknown Error
Headers
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : Error
Type: object
Error Information.
Show Source
Back to Top

Examples

The following example shows how to retrieve a list of organizations by submitting a GET request.

cURL Example - Without Query Parameters

curl -i -X GET \
   -H "Authorization:Bearer <your access token>" \
 '${si}/access-governance/service-administration/${version}/organizations'

Example of the Response Body

The following example shows the contents of the response body in JSON format:

{
  "items": [
    {
      "id": "caxx69xx-19db-xxc3-b9d6-1f40xx37d54d",
      "displayName": "Database-Infra",
      "name": "Database-Infra",
      "description": "Manages core database infrastructure and provisioning",
      "timeCreated": "2025-09-04T06:36:51.001Z",
      "timeUpdated": "2025-09-04T06:36:51.001Z",
      "organizationType": "AG_ORGANIZATION",
      "createdBy": {
        "id": "globalId.8dxxefbf-ab68-4fxx-ae89-7bcc0fxxe5be.18.a84836862e0958ba29e9002afd63a7fb",
        "name": "Amel Maclead",
        "displayName": "Amel Maclead"
      },
      "membershipRule": "all { location IN AUS;USA;India }",
      "status": "ACTIVE",
      "tags": ["org", "database", "infra"],
      "primaryOwner": {
        "id": "globalId.8dxxefbf-ab68-4fxx-ae89-7bcc0fxxe5be.18.a84836862e0958ba29e9002afd63a7fb",
        "displayName": "Amel Maclead",
        "isPrimary": true
      },
      "isOwner": false
    },
    {
      "id": "03acxx38-faxx-454f-ba1f-59ba4bxx82f4",
      "displayName": "Engineering-Core",
      "name": "Engineering-Core",
      "description": "Core engineering team managing backend services and APIs",
      "timeCreated": "2025-07-21T10:32:48.765Z",
      "timeUpdated": "2025-08-29T16:23:54.324Z",
      "organizationType": "AG_ORGANIZATION",
      "createdBy": {
        "id": "globalId.8dxxefbf-ab68-4fxx-ae89-7bcc0fxxe5be.18.a84836862e0958ba29e9002afd63a7fb",
        "name": "Amel Maclead",
        "displayName": "Amel Maclead"
      },
      "membershipRule": "",
      "status": "ACTIVE",
      "tags": ["engineering", "backend"],
      "primaryOwner": {
        "id": "globalId.8dxxefbf-ab68-4fxx-ae89-7bcc0fxxe5be.18.a84836862e0958ba29e9002afd63a7fb",
        "displayName": "Amel Maclead",
        "isPrimary": true
      },
      "isOwner": false
    }
  ]
}

Note:

Save the organization ID and details to include while creating an access bundle and role.
Back to Top