GET manufacturers

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Manufacturer
NameDescriptionTypeAdditional information
ManufacturerId

integer

None.

ManufacturerName

string

None.

ManufacturerDescription

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "manufacturerId": 1,
    "manufacturerName": "sample string 2",
    "manufacturerDescription": "sample string 3"
  },
  {
    "manufacturerId": 1,
    "manufacturerName": "sample string 2",
    "manufacturerDescription": "sample string 3"
  }
]

text/html

Sample:
[{"manufacturerId":1,"manufacturerName":"sample string 2","manufacturerDescription":"sample string 3"},{"manufacturerId":1,"manufacturerName":"sample string 2","manufacturerDescription":"sample string 3"}]

application/xml, text/xml

Sample:
<ArrayOfManufacturer xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ops.Data.Traxpod">
  <Manufacturer>
    <ManufacturerDescription>sample string 3</ManufacturerDescription>
    <ManufacturerId>1</ManufacturerId>
    <ManufacturerName>sample string 2</ManufacturerName>
  </Manufacturer>
  <Manufacturer>
    <ManufacturerDescription>sample string 3</ManufacturerDescription>
    <ManufacturerId>1</ManufacturerId>
    <ManufacturerName>sample string 2</ManufacturerName>
  </Manufacturer>
</ArrayOfManufacturer>