Saviynt unveils its cutting-edge Intelligence Suite products to revolutionize Identity Security!
Click HERE to see how Saviynt Intelligence is transforming the industry.
Saviynt Copilot Icon

AD password expiration in Home tile

Soumyaprateek
New Contributor III
New Contributor III

Hi Team,

We have a requirement to show password expiration detail (date or inform of a notification) in Home tab tiles. Appreciate any suggestions or ideas on this regard how to accommodate password expiration in Home tiles will be helpful. We already have an AD connector in place for provisioning and reconciliation. 

Regards,

Soumya 

4 REPLIES 4

sudeshjaiswal
Saviynt Employee
Saviynt Employee

Hello @Soumyaprateek,

At present, this is not achievable. Kindly submit a request to enhance this feature through the idea portal.

You can use the analytics to notify before the password expiry over the email or else you can create the dashboard.

If you find the above response useful, Kindly Mark it as "Accept As Solution".

rushikeshvartak
All-Star
All-Star

Can you try API to extract information to show tile on home page

REST API Doc https://documenter.getpostman.com/view/20697337/2s93sgXWAt#cda099d5-f87f-4acf-aca5-98bffd19ad9e 

() => {
const [widgetdata, setWidgetData] = useState({});
useEffect(() => {
const endPoint =
"/ECMv6/api/idw/users/activity/" + userName + "?feature=password";
fetch(endPoint, {
method: "GET",
headers: { "Content-type": "application/json", "X-NOLOADER": true },
}).then((d) =>
d.json().then((data) => {
setWidgetData(data);
})
);
}, []);
return (
<a href="/ECM/maintenance/changeselfpassword">
<div>
<h6 className="status-Tile">
{intl.formatMessage({id: "Password expires in (days)"})}
</h6>
<div className="status-Tile-Data">
<h6 className="status-count">{widgetdata.daysToExpireUserPassword}</h6>
</div>

</div>
</a>
);
};

 

 

To inform over email you can use analytics to notify before password expiry


Regards,
Rushikesh Vartak
If this helped you move forward, click 'Kudos'. If it solved your query, select 'Accept As Solution'.

sab2
Regular Contributor
Regular Contributor

Hi,

Can you please provide additional details for using this API call? Such as where we should use it / place it and how to configure it on the password expires tile?

Thank you!

On home there is icon call + Add KPI you can add from there . maximum 4 KpI CAN BE ADDED


Regards,
Rushikesh Vartak
If this helped you move forward, click 'Kudos'. If it solved your query, select 'Accept As Solution'.