timerTrigger Azure Functions – HTTP response code 404 Not Found in Input

For function.json I had the following

{
  "bindings": [
    {
      "name": "Timer",
      "type": "timerTrigger",
      "direction": "in",
      "schedule": "0 0 8 * * 2-7"
    }
  ]
}

Changing the days of the week to their Names fixed the issue

{
  "bindings": [
    {
      "name": "Timer",
      "type": "timerTrigger",
      "direction": "in",
      "schedule": "0 0 8 * * Tues-Sun"
    }
  ]
}
1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading...