GET api/Prerequisite/GetAllBrands
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of Brands| Name | Description | Type | Additional information |
|---|---|---|---|
| BrandID | integer |
None. |
|
| BrandName | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"BrandID": 1,
"BrandName": "sample string 2"
},
{
"BrandID": 1,
"BrandName": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfBrands xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Equestrian.Entities">
<Brands>
<BrandID>1</BrandID>
<BrandName>sample string 2</BrandName>
</Brands>
<Brands>
<BrandID>1</BrandID>
<BrandName>sample string 2</BrandName>
</Brands>
</ArrayOfBrands>