According to this issue, I would like to upload web resources to a Microsoft Dynamics CRM via Node.js based API.
Is there a way to do this with things like a common HTTP request?
For example:
I want to update the resource https://MyOrganization.crm.dynamics.com/WebResources/test/test.htm.
Is it possible to do someting like that (cURL example; PUT request):
curl -T .\localTest.htm https://MyOrganization.crm.dynamics.com/WebResources/test/test.htm --user MyOrganization\mkloubert:password
Or is there another way to do that?