How can I schedule a process to run every last Friday of the month ? How Can I Use The API Trigger?
Cheers!
How can I schedule a process to run every last Friday of the month ? How Can I Use The API Trigger?
Cheers!
@yash.bidaye use orchestrator Time Trigger ā Advanced and set Cron to run on the last Friday of every month.
Or use API Trigger (POST /odata/Jobs/UiPath.Server.Configuration.OData.StartJobs) to start the process programmatically.
Hello @yash.bidaye,
A process to run on the last Friday of every month, you can either do it directly in UiPath Orchestrator using a Cron expression or programmatically using the Orchestrator API.
The easiest way is through the UI: go to Automation ā Triggers ā Add Trigger, choose your process, select Advanced, and enter the Cron expression 0 0 10 ? * 6L, where 10 represents the hour (10:00 AM, which you can adjust as needed) and 6L means the last Friday of the month.
Hello @yash.bidaye
CRON Expression for last Friday of every month : 0 00 00 ? *6L (You can set time as per your requirement)
Ex.
0 00 09 ? * 6L
https://docs.uipath.com/orchestrator/automation-cloud/latest/user-guide/api-triggers
You read above topic for API Trigger
Regards,
Rajesh Rane
Can you please say it in simple words
Hello @yash.bidaye
Cron expression explanation ![]()
0 ā seconds = 0
00 ā minutes
09 ā hour = 09 AM (you can change as needed)
? ā day of month
Reagards,
Rajesh Rane
Thank You @rajesh.rane for your help.
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.