Pagination interface
The fulfillmenttools platform offers a pagination interface for the most endpoints. Pagination is done based on size
and startAfterId
provided in the request by using query parameters. This way you will get the portion of data according to the requested parameters:
This call would return 20 entities starting after (not including) the entity with the specified entityId
. Default value for the size
query parameter is 25 on paginated queries.
Note: The maximum value for the size parameter for a single REST API call is 500
.
Last updated