Norce Commerce Connect is an integration framework for connecting Norce with external systems. It manages the import and normalization of data such as products, prices, customers (people and organizations), and inventory from suppliers, content providers, and ERP/PIM/CRM systems. It also handles order and transactional integrations with ERP systems.
- Postman Collection with Connect Examples
- How to Use Postman Examples
- .NET Standard code examples:
All integrations with Norce Commerce Connect must use REST over HTTPS.
Norce Commerce Connect uses OAuth2 for authentication. Credentials are created in the Admin UI. See Accessing APIs with OAuth2 accounts for details.
The API uses standard HTTP status codes to indicate the result of requests.
Some API methods are asynchronous. When you call these methods, the request is received and stored for later processing. The API returns a job ID, which you can use to check the status of your request.
The following table lists asynchronous methods, their documentation, and descriptions:
Documentation | Method | Description |
---|---|---|
Competitor Information | ImportCompetitorSkus | Import competitor product data. Use for importing data from price comparison solutions. |
Availability Information | ImportOnhands | Import product availability data. |
Price Lists | ImportPriceLists | Import price list entities, including campaigns and agreements. |
Product Information | ImportProducts | Import product catalog data. Only one price per product; use ImportSkuPriceList for more prices. |
- | ImportRelations | Import relations between products or variants. |
Price Information | ImportSkuPriceLists | Import price data for products. |
Customer and Company Integrations | ImportCustomers | Insert or update customer information and relationships. |
Customer and Company Integrations | ImportCompanies | Insert or update company information and relationships. |
Supplier Integration | ImportProducts | Import supplier product catalogs. |
Note: Each method above is asynchronous and requires a special header, described below.
All asynchronous calls must include the X-Stormconnect-Header
. This header specifies which fields in the message body should be processed or updated.
Header Example:
X-Stormconnect-Header: {Header object}
Why is this required?
This design improves performance by only updating fields that have changed. The header tells Norce Commerce Connect which fields to process. Fields not listed in the header are ignored during import.
You must specify an applicationId
(or application-id
) header (an integer) for all calls. This identifies the application context for the API call. For most use cases, the specific application does not affect the data, as it is shared for the client.
All asynchronous calls return a job ID if successful. You can track job status in the Admin UI (Integration Status) or via API (list job, get job, etc.).
- Use the job ID to track import progress.
- Call
Job.Get
or subscribe toJobCompletedEvent
in the Admin UI. See Norce Commerce Event.
To rerun a job, call the Job.Restart
method. This uses the original payload and restarts the job.
- Jobs can only be restarted while the payload is cached (about two weeks after import).
- Jobs can only be restarted after the previous run is finished.
Asynchronous methods are designed for updating many items at once. Avoid sending one-at-a-time updates, as this increases processing time and queue length. Instead, accumulate changes and send them in batches (e.g., every 60 minutes).
Why?
High-throughput, batched updates reduce queue size and improve performance. Frequent, single-item updates can cause long lead times.
For .NET platforms, Norce provides client libraries as a NuGet package. These include contracts and a REST helper class.
Most outgoing messages use the Norce Commerce Event solution (asynchronous publish-subscribe). Some scenarios require synchronous outgoing calls, such as specific workflows before/after external system calls.
- See Implementing an Order Receiver Service and Shopping Integrations for details.
Norce Commerce Connect enforces a rate limit of 60 requests per minute per customer.
Include an AccountId
in requests, to make the data traceable in Norce Commerce. This is a system account created in the Admin UI (System Settings).
All imports can be marked as fullfile
. When fullfile
is true, Norce deactivates items missing from the feed, resetting the catalog.
Recommended practice:
- Use change feeds (
fullfile = false
) for regular updates. - Periodically (daily, weekly, or monthly), send a full feed (
fullfile = true
) to "self-repair" the catalog.
See System Integration Patterns for more details.
Currently, there are only some few scenarios using synchronous notifications.
- Read more on these here: Implementing an order receiver service and Shopping integrations