GET api/Brands
List all Brands
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of list_brand_dc| Name | Description | Type | Additional information |
|---|---|---|---|
| BrandId | integer |
None. |
|
| BrandName | string |
None. |
|
| OrganizationName | string |
None. |
|
| OrganizationId | integer |
None. |
|
| BrandCode | string |
None. |
|
| IsActive | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"BrandId": 1,
"BrandName": "sample string 2",
"OrganizationName": "sample string 3",
"OrganizationId": 1,
"BrandCode": "sample string 4",
"IsActive": true
},
{
"BrandId": 1,
"BrandName": "sample string 2",
"OrganizationName": "sample string 3",
"OrganizationId": 1,
"BrandCode": "sample string 4",
"IsActive": true
}
]
application/xml, text/xml
Sample:
<ArrayOflist_brand_dc xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplicationITTF1.Controllers">
<list_brand_dc>
<BrandCode>sample string 4</BrandCode>
<BrandId>1</BrandId>
<BrandName>sample string 2</BrandName>
<IsActive>true</IsActive>
<OrganizationId>1</OrganizationId>
<OrganizationName>sample string 3</OrganizationName>
</list_brand_dc>
<list_brand_dc>
<BrandCode>sample string 4</BrandCode>
<BrandId>1</BrandId>
<BrandName>sample string 2</BrandName>
<IsActive>true</IsActive>
<OrganizationId>1</OrganizationId>
<OrganizationName>sample string 3</OrganizationName>
</list_brand_dc>
</ArrayOflist_brand_dc>