Dim req As New MSXML2.XMLHTTP60
req.Open "POST", "https://somewebsite.com/vpc"
req.setRequestHeader "Content-Type", "text/plain"
req.setRequestHeader "Accept", "application/xml"
req.send "Code=12345&Amount=100&Account=user......."
Debug.Print req.responseText
I get Account was+not+present+in+the+request in responseText
Updated questions: What is the format or syntax where you can send POST NVP in VBA?