Decided now guys work well. For the convenience of other people.
TargetURL = "https://www.mysite.co.uk/app/api/v1/test" Set HTTPReq = CreateObject("WinHttp.WinHttpRequest.5.1") HTTPReq.Option(4) = 13056 ' HTTPReq.Open "PUT", TargetURL, False HTTPReq.SetCredentials "user", "password", 0 HTTPReq.setRequestHeader "Content-Type", "application/x-www-form-urlencoded" HTTPReq.send ("test[status]=" & Forms!curl!Text0.Value & "&test2[status]=" & Text2.Value) MsgBox (HTTPReq.responseText)
adam kearsley
source share