Skip to content

Continue an asset scroll search

Request

Continue a previoulsy started AssetScrollSearch.

You must use the scrollId resturned in each new response as a scrollId is not guarenteed to remain fixed over the course of a scroll

Security
bearerToken
Bodyapplication/jsonrequired
scrollIdstringrequired

The ID to continue the AssetScrollSearch

Example:"58b0d88b-d0c9-47fc-9038-7195b234cc0b"
curl -i -X POST \
  https://api-v2.dash.app/asset-scroll-search-scrolls \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "scrollId": "58b0d88b-d0c9-47fc-9038-7195b234cc0b"
  }'

Responses

Success

Bodyapplication/json
resultsArray of objectsrequired

The requested page of Asset resources which match the search criterion

totalResultsintegerrequired

The total number of Asset resources which match the search criterion

Example:1337
scrollIdstringrequired

The ID used to continue the AssetScrollSearch

Example:"58b0d88b-d0c9-47fc-9038-7195b234cc0b"
Response
{ "results": [ {} ], "totalResults": 1337, "scrollId": "58b0d88b-d0c9-47fc-9038-7195b234cc0b" }