Permissions for Entitlement Certification Item
GET {{baseUrl}}/certifications/:certificationId/access-review-items/:itemId/permissions
This API returns the permissions associated with an entitlement certification item based on the certification item's ID. A token with ORGADMIN or CERTADMIN authority is required to call this API. Reviewers for this certification can also call this API.
Request Params
Key | Datatype | Required | Description |
---|---|---|---|
filters | string | Filter results using the standard syntax described in V3 API Standard Collection Parameters |
Filtering is supported for the following fields and operators:
target: eq, sw
rights: ca
Supported composite operators: and, or
All field values (second filter operands) are case-insensitive for this API.
Only a single and or or composite filter operator may be used. It must also be used between a target filter and a rights filter, not between 2 filters for the same field.
For example, the following is valid: ?filters=rights+ca+(%22CREATE%22)+and+target+eq+%22SYS.OBJAUTH2%22
The following is invalid: 1?filters=rights+ca+(%22CREATE%22)+and+rights+ca+(%SELECT%22)1 |
| limit
| number | | Max number of results to return.
See V3 API Standard Collection Parameters for more information. |
| offset
| number | | Offset into the full result set. Usually specified with limit to paginate through the results.
See V3 API Standard Collection Parameters for more information. |
| count
| boolean | | If true it will populate the X-Total-Count response header with the number of results that would be returned if limit and offset were ignored.
Since requesting a total count can have a performance impact, it is recommended not to send count=true if that value will not be used.
See V3 API Standard Collection Parameters for more information. |
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
Accept | string |
RESPONSES
status: OK
[{"rights":["SELECT","SELECT"],"target":"SYS.GV_$TRANSACTION"},{"rights":["SELECT","SELECT"],"target":"SYS.GV_$TRANSACTION"}]