Get Access Governance criteria type with its states

get

/access-governance/access-reviews/20250331/campaigns/systemBrowser/ag/criteria

Retrieves a list of available Access Governance criteria types and their availability states. Applicable for Ownership Reviews.

Request

Query Parameters
  • 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 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" ]
  • The state of system criteria type.
    Allowed Values: [ "AVAILABLE", "NOT_AVAILABLE" ]
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 list of Ag criteria type with its states.
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 : AgCriteriaSummaryCollection
Type: object
The list of AgCriteriaSummary.
Show Source
Nested Schema : items
Type: array
The list of AgCriteriaSummary.
Show Source
Nested Schema : AgCriteriaSummary
Type: object
It contains the info of AG criteria type and criteria state.
Show Source
  • Allowed Values: [ "AVAILABLE", "NOT_AVAILABLE" ]
    The state of the criteria.
  • Allowed Values: [ "AG_ENTITLEMENT", "AG_APPROVAL_WORKFLOW", "AG_IDENTITY_COLLECTION", "AG_SYSTEM", "AG_POLICY", "AG_ROLE", "AG_ACCESS_GUARDRAIL" ]
    The type of the AG criteria.

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 available campaign criteria types for the Oracle Access Governance system.

cURL Example - Without Query Parameters

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

Example of the Response Body

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

{
"items" : [ {
  "type" : "AG_ACCESS_GUARDRAIL",
  "state" : "AVAILABLE"
}, {
  "type" : "AG_APPROVAL_WORKFLOW",
  "state" : "AVAILABLE"
}, {
  "type" : "AG_ENTITLEMENT",
  "state" : "AVAILABLE"
}, {
  "type" : "AG_IDENTITY_COLLECTION",
  "state" : "AVAILABLE"
}, {
  "type" : "AG_POLICY",
  "state" : "AVAILABLE"
}, {
  "type" : "AG_ROLE",
  "state" : "AVAILABLE"
}, {
  "type" : "AG_SYSTEM",
  "state" : "AVAILABLE"
} ]
}
Back to Top