Return a specific Access Policy

get

/iam/governance/adminservice/api/v1/accesspolicies/{policyId}

Returns a specific Access Policy based on Access Policy Id

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

Access Policy
Body ()
Root Schema : accessPolicy
Type: object
Access Policy details
Show Source
Nested Schema : deniedApplications
Type: array
Details of Denied Application
Show Source
Nested Schema : owner
Type: object
Owner
Show Source
Nested Schema : provisionedApplications
Type: array
Details of Provisioned Application
Show Source
Nested Schema : deniedApplications
Type: object
Show Source
Nested Schema : provisionedApplications
Type: object
Show Source
Nested Schema : childobjects
Type: array
Show Source
Nested Schema : general
Type: object
Additional Properties Allowed
Show Source
Parent form details
Nested Schema : childobject
Type: object
Show Source
Nested Schema : records
Type: array
Child form details
Show Source
Nested Schema : items
Type: object
Additional Properties Allowed
Show Source

400 Response

Bad Request

500 Response

Internal Server Error
Back to Top

Examples

The following example shows how to return a specific access policy by submitting a GET request on the REST resource using cURL. The information shown here is against a pseudo system and serves as a prototype.

curl -u username:password -H "X-Requested-By:<anyvalue>"  -X GET "http://myhost.pseudo.com:14000/iam/governance/adminservice/api/v1/accesspolicies/5"

Example of the Response Body

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

{
    "links": [
        {
            "rel": "self",
            "href": "http://myhost.pseudo.com:14000/iam/governance/adminservice/api/v1/accesspolicies/1"
        }
    ],
    "id": "1",
    "name": "AP_1615537233845",
    "description": "AP_Desc_1615537233845",
    "priority": "1",
    "retrofit": true,
    "owner": {
        "type": "USER",
        "displayname": "System Administrator",
        "name": "XELSYSADM"
    },
    "provisionedApplications": [
        {
            "id": "2",
            "name": "VisionEmployeesDomain",
            "constraint": "REVOKE",
                          "neor":false,
            "general": {
                "Organization Name": "9~OU=employees,OU=Vision,DC=adlrg12c,DC=us,DC=pseudo,DC=com"
            },
            "childobjects": [
                {
                    "id": "10",
                    "description": "Assigned Groups Form",
                    "records": [
                        {
                            "Group Name": "9~CN=adentitlement1,OU=Vision,DC=adlrg12c,DC=us,DC=pseudo,DC=com"
                        }
                    ]
                }
            ]
        }
    ],
    "deniedApplications": []
}
Back to Top