QueryRequestPagination
Pagination parameters for a recommendation query request.
Declaration
object RecommendationQueryRequestPaginationProperties
| Name | Type | Description |
|---|---|---|
offset | int32 | The zero-based index of the first result to return. Use with |
pageSize | int32 | The maximum number of results to return per page. Minimum |
Discussion
The QueryRequestPagination controls pagination in recommendation query requests. The response includes a pagination envelope with offset, pageSize, and totalCount indicating how many records matched the filters in total.
To retrieve the next page, increment offset by pageSize:
{
"offset": 20,
"pageSize": 20
}Continue until offset + pageSize >= totalCount. New recommendations may appear or disappear between pages because the result set isn’t snapshotted.