Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

URL: <resource-path>.configNames.json

Returns the current context path, and an array with all configuration names and metadata.

Read Configuration Data

URL: <resource-path>.configData.json?configName=<configName>[&collection=true]

Returns an array with configuration data. Always 1 element for singleton configurations, otherwise 0..n elements for collection configurations.

Use the configName as parameter for the configPersist URL when posting back the changed configuration data.

The response may contain nested configuration data elements. Each of them has their on configName which can be used for posting as well.

Persist Configuration Data

...

Code Block
languagejs
[{"collectionItemName": "item1", "properties": {
  "prop1": "value1",
  "prop2": 55,
  "prop3": true,
  "prop4": ["value1","value2"]
}},
{"collectionItemName": "item2", "properties": {
  "prop1": "value2"
}}]

...