Announcing the Saviynt Knowledge Exchange unifying the Saviynt forums, documentation, training,
and more in a single search tool across platforms. Read the announcement here.

SMS notification for password expiration

AndreaG
New Contributor
New Contributor

Hello,

we have a requirement to send automatic notification to users via SMS when their AD account password is about to expire (30, 15 and 7 days before expiration date). 

Assuming we have an SMS gateway that accept standard API REST calls: would it be possible to manage such scenario?

Thank you,

Andrea

2 REPLIES 2

PremMahadikar
Regular Contributor III
Regular Contributor III

HI @AndreaG ,

Its possible. Please check below:

Doc link - Days to notify before account password expire

PremMahadikar_2-1711136430586.png

Then you need to enable the type of notification in Global Config > Set up authentication

PremMahadikar_1-1711136265743.png

You can check this documentation on creating SMS Gateways REST web service (Sample standard APIs have been shared)

PremMahadikar_0-1711135992174.png

 

rushikeshvartak
All-Star
All-Star
  1. Configure OTP Configurations in global configuration and attach email template.

rushikeshvartak_0-1711333451326.png

 

  1. Follow SMS Message in JSON

Sample JSON

{
  "call": [
    {
      "name": "call1",
      "connection": "acctAuth",
      "url": "https://demo.sms-gateway.com/send",
      "httpMethod": "POST",
      "httpHeaders": {
        "Accept": "application/json",
        "Content-Type": "application/json"
      },
      "httpContentType": "application/json",
      "httpParams": {
        "senderid": "Saviynt-OTP-Admin",
        "message": "Your Saviynt verification code is ${otp}. It will be valid for the next 300 seconds.",
        "phone": "${phone}"
      }
    }
  ]
}    

Refer Doc 

https://docs.saviyntcloud.com/bundle/EIC-Admin-v24x/page/Content/Chapter14-Password-Management/Confi...


Regards,
Rushikesh Vartak
If you find the response useful, kindly consider selecting Accept As Solution and clicking on the kudos button.