Pagination
Search requests return paginated results.
Last updated
Was this helpful?
Search requests return paginated results.
The API "search" endpoints return a result set of objects matching the parameters of the search request. Rightsline utilizes offset pagination to dictate the number of objects returned in each request. Pagination is controlled using the following two request parameters: start, rows.
start
int
0
The zero-based index offset of the first object in the result set.
rows
int
25
The number of objects to return in the result set. Max = 100
{
"query": {
"$and": [
{
"$eq": [
"templateid",
1
]
}
]
},
"start": 0,
"rows": 100
}Last updated
Was this helpful?
Was this helpful?

