Response from thingworx Rest API call in c# program
Hi,
I using Thingworx Rest API call from c# program using with HttpClient and content-type = "application/json"
here with the url of getting thing property and response
https://tw_server.com/Thingworx/Things/Test_Thing/Properties/Custom_Property
{
"dataShape":{"fieldDefinitions":{"Custom_Property ":{"name":"Custom_Property ","description":"","baseType":"BOOLEAN","ordinal":2,"aspects":{"isPersistent":false,"isLogged":false,"dataChangeType":"VALUE","cacheTime":0.0}}}},
"rows":[{"Custom_Property ":true}]
}
I would like to get only property value as result or HttpResponseMessage, let me know if any way to ignore or not including the schema of property.
Thanks
Gopi

