POST api/bodega/entregas
Request Information
URI Parameters
None.
Body Parameters
SolicitudEntrega| Name | Description | Type | Additional information |
|---|---|---|---|
| IdEstimacion | integer |
None. |
|
| IdBodegasSAP | integer |
None. |
|
| Lineas | Collection of LineaEntrega |
None. |
|
| Observacion | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"IdEstimacion": 1,
"IdBodegasSAP": 2,
"Lineas": [
{
"IdMaterialesEstimacion": 1,
"CantidadAEntregar": 2.0,
"Observacion": "sample string 3",
"NumeroSerie": "sample string 4"
},
{
"IdMaterialesEstimacion": 1,
"CantidadAEntregar": 2.0,
"Observacion": "sample string 3",
"NumeroSerie": "sample string 4"
}
],
"Observacion": "sample string 3"
}
application/xml, text/xml
Sample:
<EntregaBodegaManager.SolicitudEntrega xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RFS.Service.Managers.AlmacenEspecial">
<IdBodegasSAP>2</IdBodegasSAP>
<IdEstimacion>1</IdEstimacion>
<Lineas>
<EntregaBodegaManager.LineaEntrega>
<CantidadAEntregar>2</CantidadAEntregar>
<IdMaterialesEstimacion>1</IdMaterialesEstimacion>
<NumeroSerie>sample string 4</NumeroSerie>
<Observacion>sample string 3</Observacion>
</EntregaBodegaManager.LineaEntrega>
<EntregaBodegaManager.LineaEntrega>
<CantidadAEntregar>2</CantidadAEntregar>
<IdMaterialesEstimacion>1</IdMaterialesEstimacion>
<NumeroSerie>sample string 4</NumeroSerie>
<Observacion>sample string 3</Observacion>
</EntregaBodegaManager.LineaEntrega>
</Lineas>
<Observacion>sample string 3</Observacion>
</EntregaBodegaManager.SolicitudEntrega>
application/x-www-form-urlencoded
Sample:
Sample not available.
multipart/form-data
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.