POST api/estimaciones/{idEstimacion}/items-bodega

Request Information

URI Parameters

NameDescriptionTypeAdditional information
idEstimacion

integer

Required

Body Parameters

ItemBodegaApiModel
NameDescriptionTypeAdditional information
IdMaterialesSAP

integer

None.

IdBodegasSAP

integer

None.

Cantidad

decimal number

None.

Detalle

string

None.

Request Formats

application/json, text/json

Sample:
{
  "IdMaterialesSAP": 1,
  "IdBodegasSAP": 2,
  "Cantidad": 3.0,
  "Detalle": "sample string 4"
}

application/xml, text/xml

Sample:
<ItemsBodegaEstimacionController.ItemBodegaApiModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RFS.ApiServicios.Controllers">
  <Cantidad>3</Cantidad>
  <Detalle>sample string 4</Detalle>
  <IdBodegasSAP>2</IdBodegasSAP>
  <IdMaterialesSAP>1</IdMaterialesSAP>
</ItemsBodegaEstimacionController.ItemBodegaApiModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

multipart/form-data

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.