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 TopResponse
Supported Media Types
- application/json
200 Response
OK
Nested Schema : UserDTO
Type:
Show Source
object
-
customAttributes(optional):
object customAttributes
-
departmentNumber(optional):
string
-
employeeNumber(optional):
string
-
employeeType(optional):
string
-
jobCode(optional):
string
-
managerDisplayName(optional):
string
-
managerName(optional):
string
-
misalignedCount(optional):
integer
-
organizationName(optional):
string
-
usage(optional):
number
-
userDisplayName(optional):
string
-
userKey(optional):
string
-
userName(optional):
string
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 } ] }