...
/api/v1/feedback/services/{serviceId}?page=2&pageSize=50
Best Practice
The There is no maximum limit on pagesize
. However, the pagesize
you choose can affect the performance of the servers. To improve the speed and efficiency of the APIs:
It is advised to use extra filters when doing searches.
Pick a reasonable
pagesize
to return only the data needed at the moment. Especially when returning data for human consumption, not all data may be needed immediately.It is NOT recommended to set the
pagesize
to some arbitrarily large number in an effect to circumvent the pagination feature.