Update a specific Access Policy

put

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

in Oracle Identity Governance

Request

Supported Media Types
Path Parameters
Body ()
The following example shows the contents of the request body in JSON format.
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
Back to Top

Response

Supported Media Types

200 Response

Access Policy Updated Successfully

400 Response

Bad Request

500 Response

Internal Server Error
Back to Top

Examples

The following example shows how to update a specific access policy by submitting a PUT 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 PUT "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:

{
    "name": "AP_1615537233845",
    "description": "AP_Desc_1615537233845",
    "priority": "1",
    "retrofit": true,
    "owner": {
        "type": "USER",
        "name": "XELSYSADM"
    },
    "provisionedApplications": [
        {
            
            "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