1
Authorize access
Your user must first authorize your application to access their accounting platform (e.g., Xero, Lexware Office, Sevdesk) via an authorization flow (e.g., OAuth, API key) through maesn Connect.
2
Retrieve items
Fetch the relevant items from your user’s ERP system using the GET /items endpoint.
3
Reconcile items
Match the items imported from your user’s ERP platform with any existing items in your application, using relevant fields like
itemId, itemNumber and gtin. Update items with newer information from the ERP system if available and resolve conflicting information.4
5
Keep your data fresh
After fetching item data initially, you should make sure to keep your customer’s product data up to date by regularly retrieving data through the GET /items endpoint. The
lastModified query parameter can be utilized on all our GET endpoints to save you the hassle of creating deltas to detect change. See our guide to keeping data fresh for more information!