I am using Chilkat objects and would like to be able to send a PATCH JSON string to a URL endpoint in vbscript. My POST works great, however, I can't seem to find a way to send a PATCH. The call to send a POST is: set resp = http.PostJson(URL, ResultStr). How do I send a PATCH JSON string using similar Chilkat method? Below is my code:
ResultStr = BuildJSONUpdatedResults()
set http = CreateObject("Chilkat_9_5_0.Http")
success = http.AddQuickHeader("content-type","application/json")
success = http.AddQuickHeader("Authorization",auth)
set resp = http.PostJson(URL, ResultStr)
Thanks a lot.