Get a specific manufacturer by internal id.
curl -i -X GET \ 'https://demo.storm.io/api/1.1/ProductService.svc/rest/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" }
curl -i -X GET \ 'https://demo.storm.io/api/1.1/ProductService.svc/rest/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" }
curl -i -X GET \ https://demo.storm.io/api/1.1/ProductService.svc/rest/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.
curl -i -X GET \ 'https://demo.storm.io/api/1.1/ProductService.svc/rest/ListManufacturersEx?assortmentSeed=string&statusSeed=string'
{ "ItemCount": 0, "Items": [ { … } ] }
curl -i -X GET \ 'https://demo.storm.io/api/1.1/ProductService.svc/rest/SearchManufacturers?searchString=string'
[ { "Id": 0, "Value": "string", "Code": "string" } ]