Get a list of Permissions for an Orchestrated System

get

/access-governance/service-administration/20250331/orchestratedSystems/{orchestratedSystemId}/permissions

Returns a list of permissions associated with a given orchestrated system with support for pagination.

Request

Path Parameters
Query Parameters
  • Domain Name
  • Keyword to filter on from the following fields: displayName. Only one keyword may be provided.
  • 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 id of the permission type that the permissions are attached to.
  • The resource type filter to fetch permissions for OCI systems. Required when orchestratedSystem type is OCI.
    Allowed Values: [ "APP_ROLE", "GROUP" ]
  • The field to sort by. Only one sort order may be provided. Default order for timeCreated is descending. Default order for displayName is ascending.
    Default Value: timeCreated
    Allowed Values: [ "timeCreated", "displayName" ]
  • The sort order to use, either 'ASC' or 'DESC'.
    Allowed Values: [ "ASC", "DESC" ]
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 Permission 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 : PermissionCollection
Type: object
Results of a Permission search. PermissionSummary items.
Show Source
Nested Schema : items
Type: array
List of PermissionSummary
Show Source
Nested Schema : PermissionSummary
Type: object
Description of Permission.
Show Source
Nested Schema : PermissionTypeSummary
Type: object
PermissionType Summary.
Show Source
Nested Schema : ResourceSummary
Type: object
Resource Summary.
Show Source
Nested Schema : customAttributes
Type: object
Metadata associated with the resource
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 all permission specific to an Orchestrated System by submitting a GET request.

cURL Example - Without Query Parameters

curl -i -X GET \
   -H "Authorization:Bearer <your access token>" \
'${service-instance-url}/access-governance/service-administration/20250331/orchestratedSystems/${orchestratedSystemId}/permissions'

Sample GET command using REST Client

curl -i -X GET \
   -H "Authorization:Bearer <your access token> \
'${service-instance-url}/access-governance/service-administration/20250331/orchestratedSystems/e4aa3f66-9eed-4a25-b8cc-a04c3fb2d84a/permissions'

Example of the Response Body

The following example shows the contents of the response body in JSON format, including a account profile:

{
    "items": [
        {
            "id": "groups.ICF.exaaxfxx-9eed-4a25-b8cc-a0xc3fb2xxxa.95dexxxcbxxxe0df8af649dx709915e0",
            "name": "AD_JML_GRP1",
            "description": null,
            "type": null,
            "timeCreated": "2024-08-12T13:44:07.205Z",
            "timeUpdated": null,
            "resource": {
                "id": "resource.ICF.e4aaxfxx-9eed-4axx-b8cc-a04c3fb2xxxa.exxxxxxe46exxa61exd7f067fc39be6f",
                "name": "AD System AG_App_Owner_Admin",
                "displayName": "AD System AG_App_Owner_Admin",
                "type": "RESOURCES",
                "customAttributes": null
            },
            "permissionType": {
                "id": "etype.ICF.e4aa3f66-9eed-xaxx-b8cc-axxc3fb2dxxa.936d9be0ce4c3ce91dxxxxc59cdaeaa3",
                "name": "icf.connector.entitlement.type.groups",
                "displayName": "Group",
                "externalId": "groups"
            }
        },
       {
            "id": "groups.ICF.exxx3f66-9eed-4axx-b8cc-a04c3fbxxxxa.edba9bxxxxxa0e7f0xxxxxxc99d1axxx",
            "name": "AD_JML_PERSONAS1",
            "description": null,
            "type": null,
            "timeCreated": "2024-08-12T14:34:43.034Z",
            "timeUpdated": null,
            "resource": {
                "id": "resource.ICF.e4aa3fxx-9xxx-4axx-b8cc-a04c3fbxxxxa.e427125e46e48a61e2d7f067fcxxxe6f",
                "name": "AD System AG_App_Owner_Admin",
                "displayName": "AD System AG_App_Owner_Admin",
                "type": "RESOURCES",
                "customAttributes": null
            },
            "permissionType": {
                "id": "etype.ICF.e4aa3f66-9eed-4axx-b8cc-a04c3fbxxx4a.9xxd9be0ce4c3cexxdxxx1c59cdaeaax",
                "name": "icf.connector.entitlement.type.groups",
                "displayName": "Group",
                "externalId": "groups"
            }
        }
    ]
}
Back to Top