Community Tip - When posting, your subject should be specific and summarize your question. Here are some additional tips on asking a great question. X
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?
Solved! Go to Solution.
Can you please try
// result: INFOTABLE dataShape: "PropertyDefinition"
let result = ThingTemplates["GenericThing"].GetInstancePropertyDefinitions({
type: undefined /* STRING */
});
Can you please try
// result: INFOTABLE dataShape: "PropertyDefinition"
let result = ThingTemplates["GenericThing"].GetInstancePropertyDefinitions({
type: undefined /* STRING */
});
I appreciate the solution provided, but my specific need entails filtering the properties after acquisition, primarily based on their category or multiple base types.