Skip to main content
1-Visitor
September 30, 2019
Solved

getImplement Things vs getImplement Thingswithdata

  • September 30, 2019
  • 1 reply
  • 819 views

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!

 

 

Best answer by PaiChung

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.

1 reply

PaiChung22-Sapphire IAnswer
22-Sapphire I
October 2, 2019

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.