Request: JSON/Cron format to schedule SailPoint ISC workflow at 1:45 AM & 2:30 PM

:bangbang: Please be sure you’ve read the docs and API specs before asking for help. Also, please be sure you’ve searched the forum for your answer before you create a new topic.

In SailPoint ISC, I created a workflow scheduled to run every hour, which works fine. I don’t see an option to schedule specific times like 1:45 or 2:30. I know there’s a wait/delay action, but I was expecting a custom JSON format to schedule the workflow daily at 1:45 AM and 2:30 PM. Do you have any suggestions?

Hi Siva,

You can update your trigger for the workflow by API or in visual studio code. See the below example for a daily run at 1:45 am in America/Chicago time

"trigger": {
    "type": "SCHEDULED",
    "attributes": {
        "cronString": "45 1 * * *",
        "frequency": "cronSchedule",
        "timeZone": "America/Chicago"
    }
}
1 Like

Thank you for the reply. It works as expected.

Thanks Siva, if this worked as expected, can you please mark the above as a solution so that the issue is marked as resolved

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.