Community Tip - Visit the PTCooler (the community lounge) to get to know your fellow community members and check out some of Dale's Friday Humor posts! X
hi I study thingworx mashup
I'm confused about what's different between getImplement Things and getImplement Thingswithdata.
I know a little of the diffence. but I want to know more.
Thank you!
Solved! Go to Solution.
The first service retrieves just the base information of the Things related to a ThingTemplate
The second also retrieves all the Thing Properties and their Values.
So if you just need a list of the Things (Entities/Assets) and you drill down from there, use the first one because it is a lot less expensive.
If you have very static information, you can use the second one and load all necessary information at once and use SelectedRow to show the drill down (vs. something like GetProperties/GetPropertyValues based on a selected Thing)
Hope that helps.
The first service retrieves just the base information of the Things related to a ThingTemplate
The second also retrieves all the Thing Properties and their Values.
So if you just need a list of the Things (Entities/Assets) and you drill down from there, use the first one because it is a lot less expensive.
If you have very static information, you can use the second one and load all necessary information at once and use SelectedRow to show the drill down (vs. something like GetProperties/GetPropertyValues based on a selected Thing)
Hope that helps.