API
Is there any SP API to know all accounts that are linked to a specific Access Profile?
API
Is there any SP API to know all accounts that are linked to a specific Access Profile?
Can you elaborate a little more on what you want?
You want to know which users have the access profiles? Or which Accounts have the entitletement present on the Access Profile;
I need to know which accounts are part of a given access profile
There’s two way s of dicovering that:
If you accessProfile is 123
{
"indices": [
"identities"
],
"query": {
"query": "@access(type:ACCESS_PROFILE AND name:11234)"
},
"includeNested": true ,
"queryResultFilter": {
"includes": [
"*"
]
}
}
The type access profile is not really necessary but you get the idea. This also work in the OOTB search tab.
Best!
This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.