Support the X-HTTP-Method-Override header in the API
Please put supporting the X-HTTP-Method-Override header for API on the roadmap. NetSuite is not alone in blocking http PATCH.
We currently have our own integration between NetSuite and PandaDoc. As part of that we need to be able to retire documents when we change an Estimate in NetSuite. At that point the existing document is obsolete. So we are trying to use the api to change the status of the Panda doc from a NS server script:
PATCH https://api.pandadoc.com/public/v1/documents/{document_id}/status/
However PATCH is not universally accepted as a valid HTTP method and the NS scripting api does not offer it. Instead, to do a PATCH from NS, we usually use the standard workaround which is a POST with a header 'X-HTTP-Method-Override' = 'PATCH'
When we do this, we get an error because it is not supported by your API.