Skip to main content
6-Contributor
September 6, 2023
Solved

GetPropertyDefinations in ThingTemplate

  • September 6, 2023
  • 1 reply
  • 1205 views

Avinash_Shukla_0-1694004539266.png

I created a couple of properties in a ThingTemplate and I wanted to retrieve them using the service "GetPropertyDefinations" but there is no data in a result . so how  can I retrieve the Property names from ThingTemplate?

 

 

 

 

 

 

 

 

 

 

 

Best answer by ashaban

Can you please try 

// result: INFOTABLE dataShape: "PropertyDefinition"
let result = ThingTemplates["GenericThing"].GetInstancePropertyDefinitions({
type: undefined /* STRING */
});

 

ashaban_0-1694011940146.png

 

1 reply

ashaban12-AmethystAnswer
12-Amethyst
September 6, 2023

Can you please try 

// result: INFOTABLE dataShape: "PropertyDefinition"
let result = ThingTemplates["GenericThing"].GetInstancePropertyDefinitions({
type: undefined /* STRING */
});

 

ashaban_0-1694011940146.png

 

6-Contributor
September 7, 2023

I appreciate the solution provided, but my specific need entails filtering the properties after acquisition, primarily based on their category or multiple base types.