POST api/ordenes/ValidarStock?IdBodega={IdBodega}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| IdBodega | integer |
None. |
Body Parameters
PistoleoApiModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Ubicacion | string |
None. |
|
| IdUbicacion | integer |
None. |
|
| IdDetalleOrden | integer |
None. |
|
| Producto | string |
None. |
|
| IdProducto | integer |
None. |
|
| Cantidad | integer |
None. |
|
| FechaCaducidad | date |
None. |
|
| Lote | string |
None. |
|
| FechaRegistro | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Ubicacion": "sample string 1",
"IdUbicacion": 1,
"IdDetalleOrden": 1,
"Producto": "sample string 2",
"IdProducto": 1,
"Cantidad": 3,
"FechaCaducidad": "2025-12-26T08:24:43.1239915-05:00",
"Lote": "sample string 4",
"FechaRegistro": "sample string 5"
}
application/xml, text/xml
Sample:
<PistoleoApiModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WMS.Services.ViewModels"> <Cantidad>3</Cantidad> <FechaCaducidad>2025-12-26T08:24:43.1239915-05:00</FechaCaducidad> <FechaRegistro>sample string 5</FechaRegistro> <IdDetalleOrden>1</IdDetalleOrden> <IdProducto>1</IdProducto> <IdUbicacion>1</IdUbicacion> <Lote>sample string 4</Lote> <Producto>sample string 2</Producto> <Ubicacion>sample string 1</Ubicacion> </PistoleoApiModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.