GET {version}/Manufacturer/List/{id}

Download the manufacturers list

Request Information

URI Parameters

Parameters description
NameDescriptionTypeAdditional information
version

string

None.

id

string

None.

Body Parameters

None.

Response Information

Resource Description

Collection of ManufacturerViewModel
Parameters description
NameDescriptionTypeAdditional information
Description

Gets or sets the description.

string

None.

Id

Gets or sets the identifier.

integer

None.

LogoPath

Gets or sets the logo path.

string

None.

Name

Gets or sets the name.

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Description": "sample string 1",
    "Id": 2,
    "LogoPath": "sample string 3",
    "Name": "sample string 4"
  },
  {
    "Description": "sample string 1",
    "Id": 2,
    "LogoPath": "sample string 3",
    "Name": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfManufacturerViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CPWebApi.ViewModels">
  <ManufacturerViewModel>
    <Description>sample string 1</Description>
    <Id>2</Id>
    <LogoPath>sample string 3</LogoPath>
    <Name>sample string 4</Name>
  </ManufacturerViewModel>
  <ManufacturerViewModel>
    <Description>sample string 1</Description>
    <Id>2</Id>
    <LogoPath>sample string 3</LogoPath>
    <Name>sample string 4</Name>
  </ManufacturerViewModel>
</ArrayOfManufacturerViewModel>