Is there any way to escape encoding of special character of the c# smartsheet api ?
likewise i would like to perform a search with double quotes:
https://api.smartsheet.com/2.0/search?query="Previoo"
Although, on the implemtantation on the api the query is escaped: https://github.com/smartsheet-platform/smartsheet-csharp-sdk/blob/master/main/Smartsheet/Api/Internal/SearchResourcesImpl.cs line 120 :
parameters.Add("query", Uri.EscapeDataString(query));