How to Export all Identity Data

As you’ve pointed out, there are a few approaches you can take to do this. You can use the list identities endpoint with pagination to get all identities in your tenant with their attributes, or you can use the search API to get all identities, which will include a lot of information about each identity including their attributes. In either case, the result will be an array of JSON objects, which might not be the best format for your reporting needs. I highly recommend you check out my video on API reporting to see how you can utilize the typescript SDK to fetch all identities using the list identities endpoint and then transform the results into a CSV file.

1 Like