-1

I cannot see any samples or documentation for the WebHookType. In the UI I can set it to "Not a WebHook" and want to do this in the functions.js, all samples seem to be "genericJson".

"webHookType": "genericJson"

1 Answer 1

1

OK so I went into Function App settings for the Azure Function and then to Go to App Service Settings and then opened up Tools and went to Kudu. I could navigate to the functions.js file and see what the file looked it.

{
  "bindings": [
    {
      "webHookType": "",
      "type": "httpTrigger",
      "direction": "in",
      "name": "req"
    },
    {
      "type": "http",
      "direction": "out",
      "name": "res"
    }
  ],
  "disabled": false
}
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.