I’m trying to implement a table using an API as the data source. I’m able to fetch data successfully, but even though there are 50 records, only 10 records are being displayed.
I suspect there might be an issue with the pagination configuration or the payload being sent to the API.
Could you please guide me on:
-
What payload needs to be sent for server-side pagination?
-
Which pagination values need to be configured (page number key, page size key, total counts?
-
How to correctly apply server-side pagination in this case?

