{"id":6407,"date":"2022-11-28T20:53:18","date_gmt":"2022-11-28T20:53:18","guid":{"rendered":"https:\/\/pariswells.com\/blog\/?p=6407"},"modified":"2022-11-28T20:56:35","modified_gmt":"2022-11-28T20:56:35","slug":"timertrigger-azure-functions-http-response-code-404-not-found-in-input","status":"publish","type":"post","link":"https:\/\/pariswells.com\/blog\/research\/timertrigger-azure-functions-http-response-code-404-not-found-in-input","title":{"rendered":"timerTrigger Azure Functions &#8211; HTTP response code 404 Not Found in Input"},"content":{"rendered":"\n<p>For function.json I had the following<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"json\" class=\"language-json\">{\n  \"bindings\": [\n    {\n      \"name\": \"Timer\",\n      \"type\": \"timerTrigger\",\n      \"direction\": \"in\",\n      \"schedule\": \"0 0 8 * * 2-7\"\n    }\n  ]\n}<\/code><\/pre>\n\n\n\n<p>Changing the days of the week to their Names fixed the issue<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"json\" class=\"language-json\">{\n  \"bindings\": [\n    {\n      \"name\": \"Timer\",\n      \"type\": \"timerTrigger\",\n      \"direction\": \"in\",\n      \"schedule\": \"0 0 8 * * Tues-Sun\"\n    }\n  ]\n}<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>For function.json I had the following Changing the days of the week to their Names fixed the issue<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-6407","post","type-post","status-publish","format-standard","hentry","category-research"],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts\/6407","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/comments?post=6407"}],"version-history":[{"count":2,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts\/6407\/revisions"}],"predecessor-version":[{"id":6409,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts\/6407\/revisions\/6409"}],"wp:attachment":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/media?parent=6407"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/categories?post=6407"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/tags?post=6407"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}