POST api/Despacho/{id}/Agrega

Marca el Despacho como sincronizado

Informacion Request

URI Parametros

NombreDescripcionTipoInformacion Adicicional
id

Id del despacho

integer

Required

Parametros Body

ExpedicionRapidaDetalle
NombreDescripcionTipoInformacion Adicicional
ArticleId

integer

Required

LayoutOrigenId

integer

Required

LayouDestinoId

integer

Required

SiteId

Sitio

integer

Ninguno.

Lote

Lote

string

Ninguno.

Carton

Carton destino

string

Ninguno.

UsuarioId

Usuario pickeador

integer

Ninguno.

Cantidad

Cantidad pickeada

integer

Ninguno.

Formato Request

application/json, text/json

Ejemplo:
{
  "ArticleId": 1,
  "LayoutOrigenId": 2,
  "LayouDestinoId": 3,
  "SiteId": 4,
  "Lote": "sample string 5",
  "Carton": "sample string 6",
  "UsuarioId": 7,
  "Cantidad": 1
}

application/xml, text/xml

Ejemplo:
<DtoObj.ExpedicionRapidaDetalle xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/INNVITA_DTO">
  <ArticleId>1</ArticleId>
  <Cantidad>1</Cantidad>
  <Carton>sample string 6</Carton>
  <LayouDestinoId>3</LayouDestinoId>
  <LayoutOrigenId>2</LayoutOrigenId>
  <Lote>sample string 5</Lote>
  <SiteId>4</SiteId>
  <UsuarioId>7</UsuarioId>
</DtoObj.ExpedicionRapidaDetalle>

application/x-www-form-urlencoded

Ejemplo:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'ExpedicionRapidaDetalle'.

Informacion Response

Descripcion Recurso

HttpResponseMessage
NombreDescripcionTipoInformacion Adicicional
Version

Version

Ninguno.

Content

HttpContent

Ninguno.

StatusCode

HttpStatusCode

Ninguno.

ReasonPhrase

string

Ninguno.

Headers

Collection of Object

Ninguno.

RequestMessage

HttpRequestMessage

Ninguno.

IsSuccessStatusCode

boolean

Ninguno.