GET api/{projectID}/BrandList
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| projectID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Brand| Name | Description | Type | Additional information |
|---|---|---|---|
| brandId | string |
None. |
|
| name | string |
None. |
|
| imageUrl | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"brandId": "sample string 1",
"name": "sample string 2",
"imageUrl": "sample string 3"
},
{
"brandId": "sample string 1",
"name": "sample string 2",
"imageUrl": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfBrand xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AppKobi.WebApi">
<Brand>
<brandId>sample string 1</brandId>
<imageUrl>sample string 3</imageUrl>
<name>sample string 2</name>
</Brand>
<Brand>
<brandId>sample string 1</brandId>
<imageUrl>sample string 3</imageUrl>
<name>sample string 2</name>
</Brand>
</ArrayOfBrand>