Versions Compared

Key

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

...

Section

Filters
Anchor
FiltersAnchor
FiltersAnchor

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

Common filter:

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

Code Block
languagejs
  "filter" : {
    "ids" : ["ID1", "ID2", "ID3", ...],
    "type" : "TYPE",
    "description" : "DESCRIPTION"
  }
Note
When using endpoints that use this filter, the filter cannot be empty: at least one field of the filter must be specified.

...