I have the following JSON string that is passed into my c# code as a string parameter - AddLocation(string locationJSON):
{\"accountId\":\"57abb4d6aad4\",\"a
I've ran into this problem as well. Try something like this instead of AddJsonBody.
AddJsonBody
request.AddParameter("application/json", locationJSON, ParameterType.RequestBody);