REST SDK Error when getting forum threads

Pulling back 100 forum threads via REST SDK.

Seems the thread body has curly braces or some code...I'm getting an exception for missing closing brace.  Other pages and forums work when I run my script...but seems some thread body values are not properly escaped/encoded??

Telligent.Evolution.RestSDK.Exceptions.JsonBadFormat
HResult=0x80131500
Message=No closing brace found:
{"CreatedByUser":{"AvatarUrl":""DisplayName":"Fouad">community2.dynamics-int.com/.../avatar.png","DisplayName":"Fouad bayoucef","ProfileUrl":""Username":"Fouad">community2.dynamics-int.com/.../fouad-bayoucef","Username":"Fouad bayoucef","CurrentStatus":null,"Id":186942},"ContentId":"cdc0f7e0-7609-407c-8e59-08785dc82f95","ContentTypeId":"46448885-d0e6-4133-bbfb-f0cd7b0fd6f7","CreatedDate":"2017-07-11T12:00:51.807","HtmlName":"Custom action with a complex input parameter (entityreference)","HtmlDescription":"<p>I create a global (unbound) action in Dynamics 365 (new_newAction) that accepts an input parameter ( of name Target ) &nbsp;with type (EntityReference) and activate it.</p>\n<p>I checked that my action is available throw WebAPI</p>\n<p>&nbsp;I want to call it in a JavaScript method, but for testing I wanted to call it from a REST Client ( example Postman, Insomnia&nbsp; SoapUI).</p>\n<p>&nbsp;To do that &nbsp;I did the following :</p>\n<p>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; I use method POST with a json payload</p>\n<p>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; I put my credential ( other calls to the WebAPI endpoint work)</p>\n<p>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; I put the Url :&nbsp;&nbsp; server/organization/api/data/v8.2/tgz_newAction</p>\n<p>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; I put necessary headers :</p>\n<p><b>Accept: application/json</b></p>\n<p><b>OData-MaxVersion: 4.0</b></p>\n<p><b>OData-Version: 4.0</b></p>\n<p><b>Content-Type: application/json; charset=utf-8</b></p>\n<p>&nbsp;-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; I put the payload but it&rsquo;s not correct</p>\n<p>Example :</p>\n<p>{</p>\n<p>&nbsp; &nbsp; &nbsp;&quot;inputTarget&quot; :</p>\n<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;{</p>\n<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;@odata.type&quot;: &quot;CRM.crmbaseentity&quot;,</p>\n<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;@odata.id&quot;: &quot;78713858-5e81-df11-afdb-00155dba380a&quot;,</p>\n<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;@odata.LogicalName&quot;: &quot;new_entity&quot;,</p>\n<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;@odata.Name&quot;: &quot;new_entity&quot;</p>\n<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;}</p>\n<p>}</p>\n<p>&nbsp;But that it&rsquo;s not working. &nbsp;Do you have any idea ?</p><div style=\"clear:both;\"></div>","Url":""AvatarUrl":null,"Application":{"ApplicationId":"0bef335b-2875-4af5-a130-d3cd2876a993","ApplicationTypeId":"48f9bad6-9756-4845-ab98-382808c7bced","HtmlName":"">community2.dynamics-int.com/.../custom-action-with-a-complex-input-parameter-entityreference","AvatarUrl":null,"Application":{"ApplicationId":"0bef335b-2875-4af5-a130-d3cd2876a993","ApplicationTypeId":"48f9bad6-9756-4845-ab98-382808c7bced","HtmlName":" Forum","HtmlDescription":"Get fast help and free support for Microsoft Dynamics CRM from qualified experts in the official Microsoft Dynamics CRM forum.","Url":""AvatarUrl":null,"Container":{"ContainerId":"649faae2-b377-4dcc-b0b6-e2ec9b35f7bf","ContainerTypeId":"23b05a61-c3e5-4451-90d9-bfa00453bce4","HtmlName":"Microsoft">community2.dynamics-int.com/.../microsoft-dynamics-crm-forum","AvatarUrl":null,"Container":{"ContainerId":"649faae2-b377-4dcc-b0b6-e2ec9b35f7bf","ContainerTypeId":"23b05a61-c3e5-4451-90d9-bfa00453bce4","HtmlName":"Microsoft Dynamics CRM","Url":""AvatarUrl":"https://community2.dynamics-int.com/cfs-file/__key/communityserver-components-groupavatars/00-00-00-00-57/4U5SQ09RRPUN.png"}}}">community2.dynamics-int.com/.../4U5SQ09RRPUN.png"}}}
Source=Telligent.Rest.SDK
StackTrace:
at Telligent.Evolution.RestSDK.Json.JsonParser.ReadAsObject(Char[] json)
at Telligent.Evolution.RestSDK.Json.JsonReader.ReadValue()
at Telligent.Evolution.RestSDK.Json.JsonReader.Read()
at Telligent.Evolution.RestSDK.Implementations.Deserializer.Deserialize(Object element, JsonReader reader)
at Telligent.Evolution.RestSDK.Implementations.Deserializer.AddArray(Object element, JsonReader reader)
at Telligent.Evolution.RestSDK.Implementations.Deserializer.Deserialize(Object element, JsonReader reader)
at Telligent.Evolution.RestSDK.Json.JsonConvert.Deserialize(String json)
at Telligent.Evolution.Extensibility.Rest.Version1.RestHost.GetToDynamic(Int32 version, String endpoint, Boolean enableImpersonation, RestGetOptions options)
at CommunityRetroFitTags.Program.Main(String[] args) in 

response = host.GetToDynamic(2, "forums/{forumid}/threads.json", false, new RestGetOptions
{
PathParameters = new System.Collections.Specialized.NameValueCollection {
{ "forumid", forumId }
},
QueryStringParameters = new System.Collections.Specialized.NameValueCollection {
{ "PageIndex", x.ToString() },
{ "PageSize","100" }
}
});