Community Tip - Did you get called away in the middle of writing a post? Don't worry you can find your unfinished post later in the Drafts section of your profile page. X
I need to make a rest call from thingworx service and store the response into one of the properties. Please guide me how can i achieve that. Thanks in advance!!
There is a resource library called 'Content Loaders' there are services for GET/POST/PUT that accept responses in text/JSON/XML
Here is an example:
var prm = {
url: "YOUR_URL_HERE",
timeout: 60
};
var json = Resources["ContentLoaderFunctions"].PostJSON(prm);