POST api/Logitica/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
estado| Name | Description | Type | Additional information |
|---|---|---|---|
| cierre | boolean |
None. |
|
| ptotal | integer |
None. |
|
| phechos | integer |
None. |
|
| ppendientes | integer |
None. |
|
| listado | Collection of lista |
None. |
Response Formats
application/json, text/json
Sample:
{
"cierre": true,
"ptotal": 2,
"phechos": 3,
"ppendientes": 4,
"listado": [
{
"titulospen": "sample string 1"
},
{
"titulospen": "sample string 1"
}
]
}
text/html
Sample:
{"cierre":true,"ptotal":2,"phechos":3,"ppendientes":4,"listado":[{"titulospen":"sample string 1"},{"titulospen":"sample string 1"}]}
application/xml, text/xml
Sample:
<LogiticaController.palletVM.estado xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplication1.Controllers.Ecordero.Logistica">
<cierre>true</cierre>
<listado>
<LogiticaController.palletVM.lista>
<titulospen>sample string 1</titulospen>
</LogiticaController.palletVM.lista>
<LogiticaController.palletVM.lista>
<titulospen>sample string 1</titulospen>
</LogiticaController.palletVM.lista>
</listado>
<phechos>3</phechos>
<ppendientes>4</ppendientes>
<ptotal>2</ptotal>
</LogiticaController.palletVM.estado>