0

Where to store the managed object for the custom angular 6 App which is hosted inside the cumulocity

Thanks BA

PCA
  • 1,677
  • 6
  • 28
  • 45

1 Answers1

1

If you need to store metadata for your applications the inventory is the right place. A good approach is to give your object either a unique type for some unique flag.

{
  "type": "myUniqueType",
  "myUniqueFlag": {}
}

That way you can easily query it again with either type=myUniqueType or fragmentType=myUniqueFlag

TyrManuZ
  • 2,039
  • 1
  • 14
  • 23
  • Thanks for the reply. If you could share some reference or documentation in the cumulocity it would be easy for us to proceed further. – PCA Aug 23 '18 at 04:36
  • This is the correct API: http://cumulocity.com/guides/reference/inventory – TyrManuZ Aug 24 '18 at 09:50