I'm having trouble finding any information about this so I thought I'd ask the community here if there are any conventions on how to give the end user of a REST interface pagination info.
In particular I'm wondering should I return the total number of objects so they can calculate the number of pages, or the number of pages, or both? How should I return this information? I can see a few different ways it could work:
- Have a separate call to get the number of results. This would require multiple calls from the client so it doesn't seem optimal.
- Return this information as headers in the response.
- Add this information to my root object.
I'm asking primarily so I can avoid catching people out by doing something completely different to any established conventions so I'd appreciate any comments on what is the best way, whether I've missed any obvious solutions, etc.
Thanks.