limit | \n\
\ Limits the response to contain a specific maximum number of items, e.g.\
\ limit=20. | \n
offset | \n\
\ Skips a number of items from the beginning of the list, e.g. offset=100. | \n\
\
desc | \n \n By default, items\
\ are sorted in the order in which they were created or added to the list.\n \
\ This feature is useful when fetching all the items, because it ensures that items\n\
\ created after the client started the pagination will not be skipped.\n If\
\ you specify the desc=1 parameter, the items will be returned in the\
\ reverse order,\n i.e. from the newest to the oldest items.\n | \n
| Property | \nDescription | \n\ \
|---|---|
total | \n The total number of items\ \ available in the list. | \n
offset | \n\
\ The number of items that were skipped at the start.\n This is equal\
\ to the offset query parameter if it was provided, otherwise it is\
\ 0. | \n
limit | \n The\
\ maximum number of items that can be returned in the HTTP response.\n It equals\
\ to the limit query parameter if it was provided or\n the maximum\
\ limit enforced for the particular API endpoint, whichever is smaller. | \n \
\
count | \n The actual number of items\ \ returned in the HTTP response. | \n
desc | \n\
\ true if data were requested in descending order and false\
\ otherwise. | \n
items | \n An\ \ array of requested items. | \n
limit | \n Limits the response to\
\ contain a specific maximum number items, e.g. limit=20. | \n
exclusiveStartKey | \n Skips all records\ \ with keys up to the given key including the given key,\n in the UTF-8 binary\ \ order. | \n
| Property | \n\ \Description | \n
|---|---|
limit | \n \
\ The maximum number of items that can be returned in the HTTP response.\n\
\ It equals to the limit query parameter if it was provided or\n\
\ the maximum limit enforced for the particular endpoint, whichever is smaller. | \n\
\
isTruncated | \n true\
\ if there are more items left to be queried. Otherwise false. | \n\
\
exclusiveStartKey | \n The last\ \ key that was skipped at the start. Is `null` for the first page. | \n
nextExclusiveStartKey | \n The value for\
\ the exclusiveStartKey parameter to query the next page of items. | \n\
\
| status | \ntype | \nmessage | \n
|---|---|---|
400 | \n invalid-request | \n\
\ POST data must be a JSON object | \n
400 | \n\
\ invalid-value | \n Invalid value provided: Comments\ \ required | \n
400 | \n invalid-record-key | \n\
\ Record key contains invalid character | \n
401 | \n\
\ token-not-provided | \n Authentication token was\ \ not provided | \n
404 | \n record-not-found | \n\
\ Store was not found | \n
429 | \n\
\ rate-limit-exceeded | \n You have exceeded the rate\ \ limit of ... requests per second | \n
405 | \n\
\ method-not-allowed | \n This API endpoint can only\ \ be accessed using the following HTTP methods: OPTIONS, POST | \n