Hello All,
I have a group of entitlements that I have marked as privileged on a source that we have, however when I search for them I am not seeing them listed. We are in the implementation stage of marking privileged entitlements so we don’t have may yet. Here is a screenshot of the search:
We get the same result when searching the API (NOTE: to save space on the post I have removed most of the JSON returned, however these are from our EntraID Source):
Query:
{
"indices": [
"entitlements"
],
"query": {
"query" : "privileged: true"
}
}
Response:
[
{
"name": "Global Administrator",
"displayName": "Global Administrator",
"privileged": true,
},
{
"name": "Extended Directory User Administrator",
"displayName": "Extended Directory User Administrator",
"privileged": true,
},
{
"name": "User Administrator",
"displayName": "User Administrator",
"privileged": true,
}
]
The source that I have updated has 105 entitlements, of which are marked to be privileged.
Here is a sample of the CSV that I downloaded from the source that we had just updated (NOTE: Group attributeName and attributeValue has been changed as they may contain company data):
attributeName,attributeValue,displayName,description,privileged,schema
groups,Role1,Role 1,,true,group
groups,Role2,Role 2,,true,group
groups,admin,admin,,true,group
I am struggling to find out why the EntraID source is visible but not the other sources entitlements. Thoughts or Ideas are welcome.
Also, from an org standpoint we have not yet started to use the new Privileged Classification feature.
EDIT—
I have also attempted the below with the same results as the query listed in the example and received the same results
{
"indices": [
"entitlements"
],
"query": {
"query" : "privilegeLevel.direct: \"high\""
}
}


