The MobiWork Inbound REST API offers an inbound programmatic interface to the MobiWork solutions for any third-party software:
The MobiWork Inbound REST API allows you to manipulate most of the entities in the MobiWork platform and provide support for read, search (with advanced filtering and pagination options), update, and add (including bulk) operations.
MobiWork API pagination can be used wen retrieving data (such as customers, items, etc.). The pagination is handled using two parameters that can be included in the body of the POST request:
startPosition - This value specifies the starting point (record offset) for the data being retrieved.
maxResults - This value defines the maximum number of records to return.
By default, if these parameters are not included, the system uses:
startPosition = 0
maxResults = 200
When the startPosition is set to 0 (startPosition = 0) and the maxResults is set to 200 (maxResults = 200), then the results will contain the first 200 records. To retrieve the next set of records, you should set the startPosition = 200 and the maxResults = 200. This pattern can be repeated to continue retrieving additional records in batches.