Workflow that runs every day to validate whether the third-party contract end date has expired

Hi everyone,

I’m maintaining a workflow that must validate if the contract end date is expiring, because I need to send an email informing that the contract is expiring 15 days before the contract expires and continue sending a message every day for the contract to be renewed and/or terminated .
But I couldn’t see a trigger option to do this, can you help with that?

Thanks in advance for your help.

Hi,

You can try it using Scheduled Trigger in Workflows

Triggers - SailPoint Identity Services

Hi Sharvari,

Thanks for that.
Do you have some example to use this trigger?

Thanks advance.

You have the option to choose frequency:
Daily, Weekly, Monthly, Yearly

The json for a trigger that fires everyday at 2am EST looks like below:

"trigger": {
		"type": "SCHEDULED",
		"attributes": {
			"cronString": "0 2 * * *",
			"dailyTimes": [
				"02:00"
			],
			"frequency": "daily",
			"timeZone": "America/New_York"
		}
	}

Hope this helps.
1 Like

Hi Sharvari,

I’m so appriciate for your help.

Thank you.