Pagination Interface
The fulfillmenttools platform offers a pagination interface for some 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 10 orders starting after (not including) the order with the specified id.
Default value for the size
query parameter is 25
on paginated queries.
The maximum value for the size parameter for a single request is 500
.
Last updated