Points
Scroll points
Scroll request - paginate over all points which matches given filtering condition
post/collections/{collection_name}/points/scroll
Path parameters
collection_namestring required
Name of the collection to retrieve from
Query parameters
Define read consistency guarantees for the operation
timeoutinteger
If set, overrides global timeout for this request. Unit is seconds.
Request body
Response
successful operation
Example response
{
"time": 0.002,
"status": "ok",
"result": {
"points": [
{
"id": 40,
"payload": {
"city": "London",
"color": "green"
},
"vector": [
0.875,
0.140625,
0.897599995136261
],
"shard_key": "region_1"
},
{
"id": 41,
"payload": {
"city": "Paris",
"color": "red"
},
"vector": [
0.75,
0.640625,
0.8945000171661377
],
"shard_key": "region_1"
}
],
"next_page_offset": 42
}
}