Export uncorrelated account api

Is possible to export uncorelated account with api.
I see from ui when i export, identitynow use this api :
https://tenant.api.identitynow.com/diana/sources/sources/:sourcesId/accounts

I want to export in csv format. I see report api call but the format is not ok for me.

1 Like

Hello!

Are you trying to export uncorrelated accounts from the API?

If you use the UI, you should be able to click on the Uncorrelated Accounts tab and export the csv file of uncorrelated accounts on a source connection.

Hello,

Yes i’m trying to export with api.

We already export from ui and i see that IdentityNow use this api internally : https://tenant.api.identitynow.com/diana/sources/sources/:sourcesId/accounts

Hey!

It looks like the IDN GUI is using an internal API, /diana, to get the uncorrelated accounts. This API can’t be used by an end user, only by SailPoint.

Instead, this should work for you to at least get the JSON response which can be parsed into the desired CSV format using PowerShell if needed.

GET https://{{tenant}}.api.identitynow.com/v3/accounts?filters=sourceId eq "{{sourceId}}" and uncorrelated eq true

Thank you,

  • Zach

Thanks @zachm117 right. I was founded the answer here
How to create a search query to retrieve the uncorrelated accounts from a source? and write this blog Using IdentityNow Workflows to Send a List of Uncorrelated Accounts After Aggregation

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