I can get results using the VBA code per below. However, how can I change this code to use a certificate directly from a file server instead of having to import it first onto my machine?
Dim objHttp As WinHttpRequest
Set objHttp = New WinHttpRequest
objHttp.Open "GET", <<<url>>>, False
objHttp.SetClientCertificate "CURRENT_USER\My\<<<certificate>>>"
objHttp.Send
strResult = objHttp.responseText