POST api/Brand/Delete
Request Information
URI Parameters
None.
Body Parameters
BrandViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| BrandID | integer |
None. |
|
| CompanyID | integer |
None. |
|
| BrandName | string |
None. |
|
| IsActive | boolean |
None. |
|
| LoginId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"BrandID": 1,
"CompanyID": 2,
"BrandName": "sample string 3",
"IsActive": true,
"LoginId": 5
}
application/xml, text/xml
Sample:
<BrandViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BAL.ViewModel"> <BrandID>1</BrandID> <BrandName>sample string 3</BrandName> <CompanyID>2</CompanyID> <IsActive>true</IsActive> <LoginId>5</LoginId> </BrandViewModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |