SKYadav
(Sanjay Yadav)
May 30, 2024, 12:12pm
1
Hi All,
I am looking to download the health status report for all the source in the tenant.
Please suggest the ways to achieve this goal
What are the permissions required to perform this activity.
Can we download the report from ISC UI?(Currently no option for me to download)
Any suggestion much appreciated.
Thank you!
Sanju
Hi @SKYadav ,
Welcome to the Sailpoint developper community !
You can use the sources list endpoint to retrieve all of your tenant sources list-sources | SailPoint Developer Community
You have an attributes called status that indicate your source status/health :
From the ui i don’t think if you can export that.
2 Likes
TJ211
(Tom Cipriano)
May 30, 2024, 12:31pm
3
Maybe able to get additional info from the Task management API per source assignment as well.
ashutosh08
(Ashutosh Singh)
May 30, 2024, 12:59pm
4
Hi @SKYadav ,
You can also use System health Notification configuration to get the details. Please refer to below document.
Thanks
2 Likes
SKYadav
(Sanjay Yadav)
May 30, 2024, 1:23pm
5
Hi @baoussounda ,
Thank you for your response. I am looking for any custom script or query to get the consolidate health status of all the resources to download.
Ex :
$sources = Get-IdentityNowSource
$status = foreach ($source in $sources)
{
Test-IdentityNowSourceConnection -sourceid $source | select name, {$source}
}
$status
Note : Above script is not tested yet
Thanks
Sanjay Yadav:
name
You can achieve that by using SDK PowerShell SDK | SailPoint Developer Community
You have a functions for retrieve sources and then you can save it in csv file by selecting only name, status or other important attribute for you.
1 Like
@baoussounda provided the correct API for getting the source health. The script is something that you can write yourself. I have a video where I demonstrate methods for doing this.
system
(system)
Closed
August 17, 2024, 3:31pm
8
This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.