Quick search of products, only returns ProductId and Name.
Documentation ProductService (1.1)
https://customer-slug.api-se.norce.tech/commerce/product/1.1/
Accepts a comma separated string of Status internal ids. Lookup references in ListStatuses.
Accepts a comma separated string of Assortment internal ids. Lookup references in ListAssortments.
A comma separated list of PriceList IDs to use, if any. PriceLists supplied must be valid, either from the application's public priceList or any customer or company priceLists or any valid client priceLists. For clients configured to use priceListSeed exclusively in the API only the supplied priceLists will be used. If this is not configured, the supplied priceLists will be appended to the valid priceLists. If none is supplied, the default value for the application will be used in combination with any customer or company priceLists. This applies to both configurations.
Specifies in which language to display culture specific information. If none is supplied, value is resolved from Application.
Specifies in which currency to display prices. Uses Storm internal ids. If none is supplied, value is resolved from Application.
https://customer-slug.api-se.norce.tech/commerce/product/1.1/SearchProductsLite2
- cURL
- JS
- C#
curl -i -X GET \
'https://customer-slug.api-se.norce.tech/commerce/product/1.1/SearchProductsLite2?searchString=string&statusSeed=string&assortmentSeed=string'
Success
- application/json
- application/xml
A rate to multiply with price to get price inc VAT. 25% VAT equals a VatRate of 1.25.
A unique id for the image at our image server. Url for images are formed like http://[client specific CDN]/{ImageKey}. Preset, height and width can be sent as parameters.
A unique name that can be used in Urls and to get a Product. GetProduct and GetProductByUniqueName gets the same Product. MaxLength: 500.
The price including VAT calculated on the server side. Should be used to display prices including VAT.
[ { "Id": 0, "Name": "string", "ManufacturerName": "string", "Price": 0, "VatRate": 0, "ImageKey": "string", "UniqueName": "string", "CategoryId": 0, "PriceIncVat": 0 } ]
https://customer-slug.api-se.norce.tech/commerce/product/1.1/UpdateProductViewCount
- cURL
- JS
- C#
curl -i -X POST \
'https://customer-slug.api-se.norce.tech/commerce/product/1.1/UpdateProductViewCount?categoryId=0&productId=0'