API call to read all identity attribute values

Hello community,

WE are trying to connect SailPoint ISC with an application and they want to gather all values that we have in an idenityt attribute. just the same as we can have it with a search query in a form (it will not be show as duplicated and we will be able to filter it). But apparently i am not able to see that API Call or if it is possible to do an approach to solve this issue.

Regards,
Pablo

You’re after this:

The payload would look something like this:

{
  "query": {
    "query":"name:\"jon\""
  },
  "indices": ["identities"],
  "includeNested": false,
  "sort": ["displayName"]
}
1 Like

Hello Terry,

thanks for your reply, it really helped me. It works if i use the following payload:

{
  "query": {
    "query":"*"
  },
  "indices": ["identities"],
  "includeNested":true,
  "queryResultFilter":{"includes":["attributes.department"]}
}

Kind Regards,
Pablo

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.