POST api/UOM/Delete
Request Information
URI Parameters
None.
Body Parameters
UOMViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| UOMID | integer |
None. |
|
| CompanyID | integer |
None. |
|
| UOM | string |
None. |
|
| Description | string |
None. |
|
| MultiplierValue | decimal number |
None. |
|
| IsActive | boolean |
None. |
|
| LoginId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"UOMID": 1,
"CompanyID": 2,
"UOM": "sample string 3",
"Description": "sample string 4",
"MultiplierValue": 5.0,
"IsActive": true,
"LoginId": 7
}
application/xml, text/xml
Sample:
<UOMViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BAL.ViewModel"> <CompanyID>2</CompanyID> <Description>sample string 4</Description> <IsActive>true</IsActive> <LoginId>7</LoginId> <MultiplierValue>5</MultiplierValue> <UOM>sample string 3</UOM> <UOMID>1</UOMID> </UOMViewModel>
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. |