HTTP Methods for CloudCode Webtasks

Which HTTP methods are supported in CloudCode webtasks?

The documentation only has examples for GET and POST. Can I use DELETE, PUT, PATCH as well?

These HTTP methods are supported:

['get', 'post', 'put', 'patch', 'delete', 'head', 'options'];

If you’ve got one of these defined in your task, the platform should pick it up and the associated handler will be called.