Get membership rules and excluded identities for Identity collection access review

get

/access-governance/access-reviews/20250331/accessReviews/{accessReviewId}/membershipRules

Returns membership rules and excluded identities for Identity collection access review.

Request

Path Parameters
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

The access review membership rules.
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 : MembershipRule
Type: object
The Membership rule summary for the IC review.
Show Source
Nested Schema : attributeConditions
Type: array
The attribute conditions for the Membership rule.
Show Source
Nested Schema : AttributeCondition
Type: object
The Attribute condition for the Membership rule.
Show Source
Nested Schema : IdNameObject
Type: object
The Attribute key or Operator condition for the Membership rule.
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 membership rule for an access review task. Use the Access Control review task id for an Identity Collection.

cURL Example - Without Query Parameters

curl -i -X GET \
   -H "Authorization:Bearer <your access token>" \
 '${service-instance-url}/access-governance/access-reviews/accessReviews/${accessReviewId}/membershipRules

Example of the Response Body

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

{
  "bindingOperator": "ALL",
  "attributeConditions": [
    {
      "id": "88ac7274-1e47-4bec-a807-c6f804345fdd",
      "attrKey": {
        "id": "addresses.country",
        "name": "Location",
        "displayName": "Location"
      },
      "operator": {
        "id": "EQ",
        "name": "Equals",
        "displayName": "EQ"
      },
      "attrValue": "India",
      "attrType": "string"
    }
  ]
}
If you use an access review task id other than identity collection, then you'll receive the following response:
{
"bindingOperator": null,
"attributeConditions": null
}
Back to Top