Hello, I have a question, where I try to get all devices by API, I want to know if there is a paging way through the API where the route is http://ip_acs:7557/devices/.
Example: http://ip_acs:7557/devices/?page=1.
Hello, I have a question, where I try to get all devices by API, I want to know if there is a paging way through the API where the route is http://ip_acs:7557/devices/.
Example: http://ip_acs:7557/devices/?page=1.
To the best of my knowledge, there is no pagenation, but you can do projections to help cut down on the data returned. Don’t know if that will help in your use case.
The format for projections is /devices/?query=....&sort=....&projection=some.parameter,another.parameter,and.even.more.parameters.1
oh right, so basically it would just look for specific parameters, i’ll try, thank you very much