Versions Compared

Key

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

...

Post singleton configuration with a JSON body like this:

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


Post configuration collections with a JSON body like this:

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


No nested configurations are allowed when posting. Post them individually.