I am retrieving a Json token with API method and then as a header I put it as a bearer token using POST to get some XML file
for example...
mToken= "ksgfkasgklgkglfpjgRPOAGIOopeijiofjagfm"
req.Open "POST", "
https://grmmapi.st/api/Prescription/AllPrescriptions?insuredPersonId=" & Me.mEZBO_ERECEPT, False
req.getResponseHeader "Authorization", "Bearer " & mToken
req.send
is this formulation ok?