I cannot seem to find any other hint of others having this issue, but when I run
Dim jsonstring As String = JsonConvert.SerializeObject(faxtosend)
My Json string has everything in double quotes, for example
"{""Faxto"":""12345678"",""From"":""87654321"",""Highquality"":false,""Documents"":{""Filename"":""test.pdf"",""FileContents"":""[base64 encoded file]""}}"
As you could imagine this is breaking the API I am trying to send the data to. I cannot see any reason for this to be happening. Does anyone have any idea what could be happening here. If I remove the additional quotes the JSON is valid, but I cannot figure out why they are being added in the first place.