Retrieve Project RBAC Details

get

/ic/api/integration/v1/projects/{id}/acl

Retrieves Role-Based Access Control information about the project.

Request

Path Parameters
Query Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Successful operation
Body ()
Root Schema : AccessControlledRs
Type: object
Show Source
Nested Schema : AclRoleRs
Type: object
Show Source
Nested Schema : allowed
Type: array
Allowed List
Show Source
Nested Schema : AclRoleItem
Type: object
Show Source

404 Response

Project not found

500 Response

Server error
Back to Top

Examples

The following examples show how to get RBAC details of a project by submitting a GET request on the REST resource using cURL. For more information about cURL, see Use cURL. For more information about endpoint URL structure, see Send Requests.

Example: Get RBAC details of a project TEST_PROJECT

curl -X GET -H 'Authorization: Bearer access_token' -H "Accept:application/json" https://design.integration.region.ocp.oraclecloud.com/ic/api/integration/v1/projects/TEST_PROJECT/acl?integrationInstance=service-instance
Back to Top