Run Role Mining Task To Discovery Roles

post

/oiri/api/v1/tasks/{taskId}/.run

Run job by changing status to READY if in status 'CREATED'

Request

Path Parameters
Supported Media Types
Request Body - application/json ()
Root Schema : schema
Type: object
Show Source
Nested Schema : criteria
Type: array
Show Source
Nested Schema : Criteria
Type: object
Show Source
Back to Top

Response

Supported Media Types

200 Response

OK
Body ()
Root Schema : JobDetails
Type: object
Show Source
Nested Schema : input
Type: object
Show Source
Nested Schema : criteria
Type: array
Show Source
Nested Schema : Criteria
Type: object
Show Source
Back to Top

Examples

The following example shows how to run a role mining task to discover roles.

curl -X POST\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
-H "Authorization: Bearer $token"\
"http://localhost:port/oiri/api/v1/tasks/2/.run"
-d

Example of the Request Body

The following is an example of the request body in JSON format.

{
"candidateRolePrefix":"Ab",
"candidateRoleCountIndicator":3
}

Example of the Response Body

The following is an example of the response body in JSON format.

{
"id": "2",
"sourceId": null,
"sourceName": null,
"name": "SampleTask2",
"description": "SampleTask2",
"type": "ROLE_MINING",
"status": "READY",
"message": null,
"createdDate": "2021-04-22T07:12:31.436679Z",
"createdBy": "RFROST",
"lastUpdatedDate": "2021-04-22T12:42:44.061188Z",
"startedDate": null,
"finishedData": null,
"input": {
"name": "SampleTask2",
"description": "SampleTask2",
"candidateRolePrefix": "Ab",
"criteria": [
{
"type": "user",
"filter": "organization in (\"StarOrg1\",\"MyOrg1\")"
}
],
"candidateRoleCountIndicator": 3
},
"output": null
}
Back to Top