api-documentation icon indicating copy to clipboard operation
api-documentation copied to clipboard

Pagination guidelines

Open shawmat opened this issue 4 years ago • 1 comments

The Overview documentation https://api.mailjet.com/v3/REST/contact mentions Pagination. It is important to use the Limit, Offset and Sort parameters to manage large JSON responses - but there are no examples in any of the supported languages or wrappers of this being done.

shawmat avatar Aug 09 '21 09:08 shawmat

Hello, I encountered the same problem. After reviewing the code, I found that you need to specify the limit, offset, and sort fields within filter.

For java :

MailjetRequest request = new MailjetRequest(MAILJET_SENDER_RESOURCE) .filter("Limite", 30);

nicolasfavier avatar Jul 25 '25 08:07 nicolasfavier