This page provides example code and integration patterns for importing customer and company data into Norce Commerce Connect.
You can find ready-to-use API examples for customer and company imports in our Postman collection:
Norce Commerce provides client libraries for C# to simplify integration. Learn more:
The ImportCustomers API method is used to import customer data from external sources such as ERP or CRM systems.
To insert a new customer, provide these fields:
- Code: Customer identifier from the master system
- LastName: Person's last name (can include middle name)
- FirstName: Person's first name
- EmailAddress: Person's email address
To update an existing customer, provide at least one of the following for entity matching:
- Code: Customer identifier from the master system
- Id: Norce internal customer ID
- EmailAddress: Person's email address
The ImportCompanies API method is used to import organization or company data from external sources such as ERP systems.
To insert a new company, provide these fields:
- Code: Company identifier from the master system
- Name: Company name
- OrganizationNo: VAT number for the company
To update an existing company, provide at least one of the following for entity matching:
- Code: Company identifier from the master system
- Id: Norce internal company ID
- OrganizationNo: VAT number for the company
Explore additional code examples and integration guides: