Get Entity Attributes

get

/access-governance/access-reviews/20250331/campaigns/attributes/{agEntityType}

Retrieves a list of entity attributes used in creating an Ownership Campaign.

Request

Path Parameters
  • The type of entity to retrieve attributes for.
    Allowed Values: [ "ACCESS_BUNDLES", "ACCESS_GUARDRAILS", "APPROVAL_WORKFLOWS", "IDENTITY_COLLECTIONS", "ORCHESTRATED_SYSTEMS", "POLICIES", "ROLES" ]
Query Parameters
  • Locale used for translating attribute titles.
  • 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

Retrieves the Permissions Attributes.
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 : EntityAttributeCollection
Type: object
List of attributes.
Show Source
Nested Schema : items
Type: array
List of attributes.
Show Source
Nested Schema : EntityAttributeSummary
Type: object
Entity Attributes.
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 entity attributes containing the metadata fields useful for creating an Ownership Campaign.

cURL Example - Without Query Parameters

curl -i -X GET \
   -H "Authorization:Bearer <your access token>" \
 'https://<service-instance>/access-governance/access-reviews/${version}/campaigns/attributes/ORCHESTRATED_SYSTEMS'

Example of the Response Body

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

{
    "items": [
        {
            "id": "customAttributes.createBy",
            "name": "Created by",
            "type": "string",
            "format": null,
            "defaultOrder": -1,
            "isAdvancedFilter": false,
            "isAffiliation": false,
            "isCustom": true
        },
        {
            "id": "meta.created",
            "name": "Created date",
            "type": "string",
            "format": "date-time",
            "defaultOrder": 3,
            "isAdvancedFilter": true,
            "isAffiliation": false,
            "isCustom": false
        },
        {
            "id": "meta.lastModified",
            "name": "Last updated",
            "type": "string",
            "format": "date-time",
            "defaultOrder": 4,
            "isAdvancedFilter": true,
            "isAffiliation": false,
            "isCustom": false
        },
        {
            "id": "targetName",
            "name": "Name",
            "type": "string",
            "format": null,
            "defaultOrder": 1,
            "isAdvancedFilter": true,
            "isAffiliation": false,
            "isCustom": false
        },
        {
            "id": "owner.displayName",
            "name": "Primary owner name",
            "type": "string",
            "format": null,
            "defaultOrder": 2,
            "isAdvancedFilter": true,
            "isAffiliation": false,
            "isCustom": false
        }
    ]
}
Back to Top