Versions Compared

Key

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

...

Some endpoint queries supports a filter. A The common filter is basically a JSON object with the following format

Code Block
{
  "filter" : {
    "ids" : ["ID1", "ID2", "ID3", ...],
    "type" : "TYPE",
    "description" : "DESCRIPTION"
  }
}

Update body parameter
Anchor
UpdatesAnchor
UpdatesAnchor

Some update endpoint queries supports an update  object which extends the filtering above. The update  is basically a JSON object with the following format

Code Block
{
  "update" : {
    "description" : "DESCRIPTION"
  }
}

...