I have to interact with an external WebService (REST). I need to remotely delete an external ressource using a DELETE method. But Webhooks can only send POST or GET requests. Is there any workaround?
Generally, if faced with this situation I would pass _method=delete in the query string as an override. Of course, the server needs to know to translate the call back to DELETE.