Customer Import Examples in Norce Commerce Connect
This page provides example code and integration patterns for importing customer and company data into Norce Commerce Connect.
Postman Example Collection
You can find ready-to-use API examples for customer and company imports in our Postman collection:
Using Client Libraries
Norce Commerce provides client libraries for C# to simplify integration. Learn more:
Importing Customers with ImportCustomers
The ImportCustomers API method is used to import customer data from external sources such as ERP or CRM systems.
Required Fields for Inserting Customers
To insert a new customer, provide these fields:
Code: Customer identifier from the master systemLastName: Person's last name (can include middle name)FirstName: Person's first nameEmailAddress: Person's email address
Required Fields for Updating Customers
To update an existing customer, provide at least one of the following for entity matching:
Code: Customer identifier from the master systemId: Norce internal customer IDEmailAddress: Person's email address
Postman Examples for ImportCustomers
Importing Companies with ImportCompanies
The ImportCompanies API method is used to import organization or company data from external sources such as ERP systems.
Required Fields for Inserting Companies
To insert a new company, provide these fields:
Code: Company identifier from the master systemName: Company nameOrganizationNo: VAT number for the company
Required Fields for Updating Companies
To update an existing company, provide at least one of the following for entity matching:
Code: Company identifier from the master systemId: Norce internal company IDOrganizationNo: VAT number for the company
Postman Examples for ImportCompanies
Further Reading and Related Examples
Explore additional code examples and integration guides: