1

I want to pass current date parameter to Azure Scheduler action URL when it executes.

For example, https://<server_ip>/some/job/endpoint?startdate={0}&enddate={1} Where the placeholder will pass the current date and if possible to do some simple evaluation to add 1 day to startdate for enddate.

Is there a way to do this using the Azure Scheduler?

Martin Brandl
  • 56,134
  • 13
  • 133
  • 172
Philip K. Adetiloye
  • 3,102
  • 4
  • 37
  • 63

1 Answers1

1

Probably not since there is a open vote for supporting variables for Azure Scheduler. However, you could use Azure function with a time based trigger that performs your request including the date.

Martin Brandl
  • 56,134
  • 13
  • 133
  • 172