type: "Http"
declares it as an HTTP trigger.config.path: "/users/{userId}"
defines the endpoint. The {userId}
part indicates a path parameter that will be available in the Context Object.config.method: "GET"
specifies that only GET requests to this path will trigger the workflow.ctx.request.headers
)ctx.request.query.searchTerm
)ctx.request.params.userId
)ctx.request.body.payload
)