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 systemLastName
: Person's last name (can include middle name)FirstName
: Person's first nameEmailAddress
: 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 systemId
: Norce internal customer IDEmailAddress
: 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 systemName
: Company nameOrganizationNo
: 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 systemId
: Norce internal company IDOrganizationNo
: VAT number for the company
Explore additional code examples and integration guides: