Hi!
We using "api/v3/search-results" endpoint to find items which match the request parameters.
Unfortunately, this only works for "offset<10000", because when we try to get data for 10001,
https://<company>.autodeskplm360.net/api/v3/search-results?limit=1&offset=10000&query=workspaceId%3d...
we get an error:
{
"statusCode": 400,
"errors": [
"BAD_REQUEST"
],
"message": "The index for the items that the request tried to reach is above the limit of items retrievable from search operation"
}
Total count for this search operation:
https://<company>..autodeskplm360.net/api/v3/search-results?limit=1&offset=9999&page=&query=workspaceId%3d142+AND+(ITEM_DETAILS%3aPROPERTY_2%3d%22MACHINED%22+AND+ITEM_DETAILS%3aPROPERTY_6%3d%22%23600%22++)
Return:
{
"__self__": "/api/v3/search-results",
"offset": 9999,
"limit": 1,
"totalCount": 14113,
}
Is this a bug or do I need to pass some additional parameter to get search value for offset>10000?
Thanks!