Processing import requests
Imports from the ERP system is done by sending json data to the connect API endpoint. Litium imports the data in batches. It will raise import completed event through a webhook to notify the connect application when the import is finished. Connect will provide a report with detailed information about what has been imported.
End point for data import
Action: POST
{host}/litium/api/connect/erp/imports?api-version=2.0
Returns ImportReportId.
Import Completed event
Web hook for registering ImportCompleted event.
Will be sent out when the import is finished:
[
{
"name": "Litium.Connect.Erp.Events.ImportCompleted",
"description": "Represents an event when a import is completed."
}
]
*Full import report will be included in the event argument.
How to fetch Import report
Action: Get
End point: {host}/litium/api/connect/erp/imports/{importreportid}?api-version=1.1
Overview of data import report:

Note! You must set up all possible values in Litium before doing the import. This applies to:
- Decimal option
- INT option
- Text option
If one entity with the same Id occurs more than once in the same import, Lithium will import the last value, without throwing an error.