Skip to content
Last updated

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 system
  • LastName: Person's last name (can include middle name)
  • FirstName: Person's first name
  • EmailAddress: 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 system
  • Id: Norce internal customer ID
  • EmailAddress: 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 system
  • Name: Company name
  • OrganizationNo: 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 system
  • Id: Norce internal company ID
  • OrganizationNo: VAT number for the company

Postman Examples for ImportCompanies

Explore additional code examples and integration guides: