DELETE api/tblVehicles?id={id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
tblVehicle| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| Kind | string |
None. |
|
| Num | string |
None. |
|
| Fuel | string |
None. |
|
| ConRt | decimal number |
None. |
|
| KmCost | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
{
"id": 1,
"Kind": "sample string 2",
"Num": "sample string 3",
"Fuel": "sample string 4",
"ConRt": 5.1,
"KmCost": 6.1
}
application/xml, text/xml
Sample:
<tblVehicle xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Classes"> <ConRt>5.1</ConRt> <Fuel>sample string 4</Fuel> <Kind>sample string 2</Kind> <KmCost>6.1</KmCost> <Num>sample string 3</Num> <id>1</id> </tblVehicle>