Pagination interface
The fulfillmenttools platform offers a pagination interface for most endpoints. Pagination relies on the size and startAfterId query parameters.
GET /api/orders?size=20&startAfterId={entityId}This call returns 20 entities starting after (not including) the entity with the specified entityId. The default value for the size query parameter is 25 on paginated queries.
The maximum value for the size parameter for a single REST API call is 500.
Last updated