Versions Compared

Key

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

...

Field Name

Field Type

Description

itemsTotal

JSON objectint

Total items available to return for this query.
For performance purposes, this value will return the actual count for the first page only (index 0).
Will return -1 for all other pages.

items

JSON array

Items matching to specified query, as a JSON array.

...

Code Block
languagejson
{
  "itemsTotal": "<total-number-of-items>"2536,
  "items": [
    {
      "<item>": "<value>",
      "<item2>": "<value2>"
    },
    {
      "<item>": "<value>",
      "<item2>": "<value2>"
    },
    {
      "<item>": "<value>",
      "<item2>": "<value2>"
    }
  ]
}