Create Access Policies

post

/iam/governance/adminservice/api/v1/accesspolicies

in Oracle Identity Governance

Request

Supported Media Types
Body ()
The following example shows the contents of the request body in JSON format.
Root Schema : accesspolicies
Type: object
List of access policies to be created
Show Source
Nested Schema : accessPolicies
Type: array
Show Source
Nested 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 created successfully

400 Response

Bad Request

500 Response

Internal Server Error
Back to Top

Examples

The following example shows how to create an access policy by submitting a POST 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 -v  -H "Content-Type: application/json" -H "X-Requested-By:<anyvalue>"  -X POST  "http://myhost.networkspeosubn.idmociclou02phx.pseudovcn.com:14000/iam/governance/adminservice/api/v1/accesspolicies" -d

Example of the Request Body

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

{
	"accessPolicies": [{
		"name": "myaccesspolicy",
		"description": "myaccesspolicy",
		"priority": "2",
		"retrofit": true,
		"owner": {
			"type": "USER",
			"name": "XELSYSADM"
		},
		"provisionedApplications": [{
			"name": "Application1",
			"constraint": "REVOKE",
			"neor":false,
			"general": {
				"Parent Number": "123",
				"Parent Checkbox": "1",
				"Parent Text": "abc",
				"Parent Lookup": "pm1",
				"Parent Date": "2020-12-02 00:00:00",
				"Account ID": "456"
			},
			"childobjects": [{
					"description": "childform1",
					"records": [{
						"Form1 Date": "2020-12-17 00:00:00",
						"Form1 Checkbox": "1",
						"Form1 Text": "abc",
						"Form1 Lookup": "m1",
						"Form1 Number": "123"
					}]
				},
				{
					"description": "childform2",
					"records": [{
						"Form2 Text": "abc",
						"Form2 Number": "123"
					}]
				},
				{
					"description": "childform3",
					"records": [{
						"Form3 Date": "2020-12-17 00:00:00",
						"Form3 Checkbox": "1"
					}]
				}
			]
		}],
		"deniedApplications": [{
			"name": "Application2"
		}]
	}]
}

Example of the Response Body

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

{
    "accessPolicies": [
        {
          "links":[
           {

            "rel":"self","href":"http://myhost.pseudo.com:14000/iam/governance/adminservice/api/v1/accesspolicies/191"
           }
          ],
	"id":"191",
          "name":"myaccesspolicy",
          "description":"myaccesspolicy"
        }
    ]
}
Back to Top