Fetching multiple bookmark response properties
The following table describes the response properties that might appear in the
JSONStore API response when you fetch multiple bookmarks.
Property | Type | Description |
---|---|---|
Offset | Number | Specifies the starting point of a batch response. |
TotalCount | Number | Specifies the total number of bookmarks that match the fetch query. |
MoreAvailable | Boolean | Indicates that more bookmarks are available than the fetch response
returned. |
NextPageOffset | Number | Specifies the starting point of the second batch of bookmarks that are returned. |
Size | Number | Specifies the number of bookmarks returned in the response, up to the
maxRecords size specified. |
bookmarks | Subtype[] | Specifies the array of bookmark data returned from the fetch query. Data
may include only the "id" if "idOnly" is "true" in the request. If "idOnly" is "false",
data may include "id", "lastModifiedTime", and "payload". |
id | String | Specifies the unique ID of bookmark. |
lastModifiedTime | Timestamp | The lastModifiedTime returned from a fetch of the bookmark. |
payload | Subtype | Specifies the JSON data retrieved from the database. |