Hi everyone. Is there any way I can make a PATCH r...
# suitescript
l
Hi everyone. Is there any way I can make a PATCH request in a server script? The http and https modules only give me options for GET, POST, PUT, DELETE and HEAD.
b
no, the usual hope is that the server you are making a request to supports a http method override using headers like X-Http-Method-Override, X-HTTP-Method-Override, X-Http-Method, X-HTTP-Method, X-Method-Override;
l
Thank you, I will try that