Get a specific manufacturer by internal id.
Documentation ProductService (1.1)
https://customer-slug.api-se.norce.tech/commerce/product/1.1/
https://customer-slug.api-se.norce.tech/commerce/product/1.1/GetManufacturer
- cURL
- JS
- C#
curl -i -X GET \
'https://customer-slug.api-se.norce.tech/commerce/product/1.1/GetManufacturer?id=0'
{ "Id": 0, "Name": "string", "OrgNo": "string", "WebSite": "string", "LogoPath": "string", "SupportUrl": "string", "SupportEmail": "string", "SupportPhone": "string", "SupportOpenHours": "string", "SupportPolicy": "string", "SupportDescription": "string", "Key": "string", "LogoKey": "string", "UniqueName": "string" }
https://customer-slug.api-se.norce.tech/commerce/product/1.1/GetManufacturerByUniqueName
- cURL
- JS
- C#
curl -i -X GET \
'https://customer-slug.api-se.norce.tech/commerce/product/1.1/GetManufacturerByUniqueName?uniqueName=string'
{ "Id": 0, "Name": "string", "OrgNo": "string", "WebSite": "string", "LogoPath": "string", "SupportUrl": "string", "SupportEmail": "string", "SupportPhone": "string", "SupportOpenHours": "string", "SupportPolicy": "string", "SupportDescription": "string", "Key": "string", "LogoKey": "string", "UniqueName": "string" }
https://customer-slug.api-se.norce.tech/commerce/product/1.1/ListManufacturers
- cURL
- JS
- C#
curl -i -X GET \
https://customer-slug.api-se.norce.tech/commerce/product/1.1/ListManufacturers
{ "ItemCount": 0, "Items": [ { … } ] }
Accepts a comma separated string of Status IDs. Lookup references in ListStatuses.
Accepts a comma separated string of Assortment IDs. Lookup references in ListAssortments.
Specifies if the output should be grouped as products or as variants. Default is false which returns a list of products. Set to true if variants are wanted.
Page numbers start with 1. Default is 1. If you specify a pageNo outside the range of items, an empty list will be returned. PageSize is mandatory for pageNo to work.
https://customer-slug.api-se.norce.tech/commerce/product/1.1/ListManufacturersEx
- cURL
- JS
- C#
curl -i -X GET \
'https://customer-slug.api-se.norce.tech/commerce/product/1.1/ListManufacturersEx?statusSeed=string&assortmentSeed=string'
{ "ItemCount": 0, "Items": [ { … } ] }
https://customer-slug.api-se.norce.tech/commerce/product/1.1/SearchManufacturers
- cURL
- JS
- C#
curl -i -X GET \
'https://customer-slug.api-se.norce.tech/commerce/product/1.1/SearchManufacturers?searchString=string'
[ { "Id": 0, "Value": "string", "Code": "string" } ]