GET API call max records in response #3108
-
Hi, Regards, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
There is a default page size of 500 if none is provided in the request. You can either configure the default page size higher or set a page size for the request. For JSON-API this can be done by setting the
You can refer to the documentation for JSON API for the syntax for pagination. |
Beta Was this translation helpful? Give feedback.
There is a default page size of 500 if none is provided in the request.
You can either configure the default page size higher or set a page size for the request.
For JSON-API this can be done by setting the
page[limit]
query parameter.http://localhost:8080/api/group?page%5Blimit%5D=3000
You can refer to the documentation for JSON API for the syntax for pagination.