POST api/mobile/entrega
Request Information
URI Parameters
None.
Body Parameters
EntregaDto| Name | Description | Type | Additional information |
|---|---|---|---|
| ID_Expedicion | integer |
None. |
|
| ID_Bulto | integer |
None. |
|
| ID_Sucursal | integer |
None. |
|
| Entregado | boolean |
None. |
|
| Observacion | string |
None. |
|
| Fotos | Collection of FotoDto |
None. |
|
| Firma_Base64 | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID_Expedicion": 1,
"ID_Bulto": 2,
"ID_Sucursal": 3,
"Entregado": true,
"Observacion": "sample string 5",
"Fotos": [
{
"Base64": "sample string 1",
"Tipo": "sample string 2"
},
{
"Base64": "sample string 1",
"Tipo": "sample string 2"
}
],
"Firma_Base64": "sample string 6"
}
text/html
Sample:
{"ID_Expedicion":1,"ID_Bulto":2,"ID_Sucursal":3,"Entregado":true,"Observacion":"sample string 5","Fotos":[{"Base64":"sample string 1","Tipo":"sample string 2"},{"Base64":"sample string 1","Tipo":"sample string 2"}],"Firma_Base64":"sample string 6"}
application/xml, text/xml
Sample:
<EntregaDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TMS.API.Controllers">
<Entregado>true</Entregado>
<Firma_Base64>sample string 6</Firma_Base64>
<Fotos>
<FotoDto>
<Base64>sample string 1</Base64>
<Tipo>sample string 2</Tipo>
</FotoDto>
<FotoDto>
<Base64>sample string 1</Base64>
<Tipo>sample string 2</Tipo>
</FotoDto>
</Fotos>
<ID_Bulto>2</ID_Bulto>
<ID_Expedicion>1</ID_Expedicion>
<ID_Sucursal>3</ID_Sucursal>
<Observacion>sample string 5</Observacion>
</EntregaDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, text/html, application/xml, text/xml
Sample:
Sample not available.