Auth0 Webtasks Events

Have questions?

Head over to the forums to search for your questions and issues or post a new one.

Edit on github

#Http Event

By default Functions with Auth0 Webtasks are configured to respond to HTTP events. The URL of the webtask is determined by name of the function. Also, any HTTP method can be used to invoke the webtask. Therefore, configuring a Function when using Auth0 webtasks for an HTTP event is as simple as specifing the handler file that contains your code.

functions:
  hello:
    handler: handlerFile

Note: Auth0 Webtasks only supports a single handler per file. Therefore, you do not need to specify the method like with other Serverless providers.