Remote Configuration
Our Remote Config is a simple configuration key-value store. Based on a key, different values and value types can be saved here. Furthermore every entry can be contain a specific scope, this means that configurations can only be made available to certain user groups or clients.
Because the fulfillmenttools platform is not communicating with the Remote Config, only simple client configs should be saved in here.
Create / Update
Alter Remote Config
Add Scope
Read
Read all
Read single
Delete
Delete Remote Config
Delete scope
Example JSON
JSON field descriptions
key
key
The unique key that identifies the Remote Config entry, this can be freely chosen at entry creation.
value
& valueType
value
& valueType
The value of the key-value pair. With the valueType
, the clients can identify the technical type of the value
field for parsing.
groups
groups
At creation every entry can (but it doesn't have to) have one or multiple groups. This are only simple strings that can defined free. If a client call later the API, this group-strings can be uses as filter. This way, every client gets only the configurations that are important to them.
scopes
scopes
Defines a specific scope where the configuration is available. It is possible to add different facilities and/or users. The facility and user declarations AND-linked.
Example:
In the example above the configuration will be only returned for user USER-40
or USER-43
that are working in facility FACILITY-4711
or FACILITY-4712
. All other user and facility combinations don't get this Remote Config entry.
Last updated