SQL REST API avoid PUT, PATCH, DELETE

I am trying to integrate Zoho Creator with my MS SQL server. ZC only allows the use of GET and POST methods.
The app needs to perform updates in the MS SQL database. How can I use DreamFactory to use a GET or POST method to perform an update, rather than using the generated PUT/PATCH methods?

You can pass the method in the url, so do a POST, and method = “PATCH” , something like that. We integrated verb tunneling some time ago. You can also pass it as a http header, X-HTTP-METHOD I believe .