Here is the image of the asset information widget, which can add a property called c8y_Address
I would like my device to show their address information on the asset information widget, but I don't really know how to upload these properties to a device.
I am using MQTT. So I created a customised SMQRT Template, which is a POST inventory method 001,<region>,<street>,<territory>
. And then I publish it using client.publish('s/uc/TemplateName',
001,${region},${address},${territory});
. But it doesn't work.
I'm just wondering how can we use API to add the address information as a property of a device?
Thank you.