What I want to achieve is to have a global fragment with a custom data. This data-fragment must be accessible any time from a central source and it can be different between tenants. This data will be required for all devices
I have two ideas
The tenant: What is the best way to save custom data into the tenant fragment? I have tried using the below request but with not luck.
PUT /tenant/tenants/tenant1 HTTP/1.1
Host: tenant1.enterpise.com
Content-Type: application/json
Accept: application/json
Authorization: Basic
{
"customFragment:{
"forms":[
{
"type": ....,
"inputa" : ...
},
.....
],
"products":[
{
"name": ....,
"stock" : ...
}
],
.....
}
}
What can I do?
Using a managementObject with the custom data fragment.
May I use a management object into the database in order to achieve this? Will I be charge if this management object has not the isDevice property?
Thanks in advance!