GET PEDIDOS/TIEMPO_ENTREGA/{IdCliente}

Método que permite consultar el tiempo y fecha de entrega para un sector via el idCLiente

Request Information

URI Parameters

NameDescriptionTypeAdditional information
IdCliente

string

Required

Body Parameters

None.

Response Information

Resource Description

TiempoEntrega
NameDescriptionTypeAdditional information
TIEMPO_ENTREGA

string

None.

HORA_ENTREGA

string

None.

HORA_CIERRE_SECTOR

string

None.

FECHA_ENTREGA

string

None.

MENSAJE_USR

string

None.

MENSAJE_SIS

string

None.

COD_ERROR

string

None.

Response Formats

application/json, text/json

Sample:
{
  "TIEMPO_ENTREGA": "sample string 1",
  "HORA_ENTREGA": "sample string 2",
  "HORA_CIERRE_SECTOR": "sample string 3",
  "FECHA_ENTREGA": "sample string 4",
  "MENSAJE_USR": "sample string 5",
  "MENSAJE_SIS": "sample string 6",
  "COD_ERROR": "sample string 7"
}

application/xml, text/xml

Sample:
<TiempoEntrega xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LipiGasApi.ViewModels.Order">
  <COD_ERROR>sample string 7</COD_ERROR>
  <FECHA_ENTREGA>sample string 4</FECHA_ENTREGA>
  <HORA_CIERRE_SECTOR>sample string 3</HORA_CIERRE_SECTOR>
  <HORA_ENTREGA>sample string 2</HORA_ENTREGA>
  <MENSAJE_SIS>sample string 6</MENSAJE_SIS>
  <MENSAJE_USR>sample string 5</MENSAJE_USR>
  <TIEMPO_ENTREGA>sample string 1</TIEMPO_ENTREGA>
</TiempoEntrega>