http://(ditto-instance)/api/2/things?size=100
I tried with this, and it is not working. :(
In the database, I am able to retrieve 100 items.
Other API I tried: - http://(ditto-instance)/api/2/things?page=1&count=50
http://(ditto-instance)/api/2/things?size=100
I tried with this, and it is not working. :(
In the database, I am able to retrieve 100 items.
Other API I tried: - http://(ditto-instance)/api/2/things?page=1&count=50
The
GET /api/2/thingsendpoint does not support specifying a page size.The
GET /api/2/search/thingsAPI however does as documented, using theoptionparam: https://www.eclipse.org/ditto/http-api-doc.html#/Things-Search/get_search_thingsFor example:
GET /api/2/search/things?option=size(100)