DELETE api/InventarioDet/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
InventarioDet| Name | Description | Type | Additional information |
|---|---|---|---|
| IdInventarioDet | integer |
None. |
|
| IdInventario | integer |
None. |
|
| IdProducto | integer |
None. |
|
| Cantidad | integer |
None. |
|
| Cajas | integer |
None. |
|
| Precio | decimal number |
None. |
|
| Observaciones | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"IdInventarioDet": 1,
"IdInventario": 1,
"IdProducto": 1,
"Cantidad": 1,
"Cajas": 1,
"Precio": 1.1,
"Observaciones": "sample string 2"
}
application/xml, text/xml
Sample:
<InventarioDet xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models"> <Cajas>1</Cajas> <Cantidad>1</Cantidad> <IdInventario>1</IdInventario> <IdInventarioDet>1</IdInventarioDet> <IdProducto>1</IdProducto> <Observaciones>sample string 2</Observaciones> <Precio>1.1</Precio> </InventarioDet>