List candidate roles misaligned entitlement users

get

/oiri/api/v1/tasks/{taskId}/candidate-roles/{candidateRoleId}/misaligned-entitlements/{entitlementId}/users

Request

Path Parameters
Query Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

OK
Body ()
Root Schema : CandidateRoleUserResponse
Type: object
Show Source
Nested Schema : data
Type: array
Show Source
Nested Schema : UserDTO
Type: object
Show Source
Nested Schema : customAttributes
Type: object
Show Source
Nested Schema : map
Type: object
Show Source
Back to Top

Examples

The following example shows how to list misaligned entitlement users for candidate roles.

curl -X GET\
-H "Accept: application/json"\
-H "Authorization: Bearer $token"\
"http://localhost:port/oiri/api/v1/tasks/70561adbfdd7474290b77d5903210c6b/candidate-roles/97d40d053dd74a45a6e944f45cbfae6a/misaligned-entitlements/G3001/users"

Example of the Response Body

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

{
"recordCount": 2,
"data": [
{
"entitlementKey": "G141",
"entitlementDisplayName": "CN=adbienta11,OU=grps,OU=ganesh_bi_test,DC=adlrg12c,DC=us,DC=oracle,DC=com",
"applicationName": "BoKS_QA_latest",
"usage": null,
"misalignedCount": null,
"extEntitlementId": null
},
{
"entitlementKey": "G142",
"entitlementDisplayName": "CN=adbienta12,OU=grps,OU=ganesh_bi_test,DC=adlrg12c,DC=us,DC=oracle,DC=com",
"applicationName": "BoKS_QA_latest",
"usage": null,
"misalignedCount": null,
"extEntitlementId": null
}
]
}
Back to Top