GET PEDIDOS/POSICION_CAMION/{IdPedido}
Método que permite ubicar el camión de delivery
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| IdPedido | string |
Required |
Body Parameters
None.
Response Information
Resource Description
GPSResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| LATITUD | decimal number |
None. |
|
| LONGITUD | decimal number |
None. |
|
| FECHA | date |
None. |
|
| TIENE_ERROR | boolean |
None. |
|
| ERROR | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"LATITUD": 1.0,
"LONGITUD": 2.0,
"FECHA": "2026-06-03T18:31:51.8482066-04:00",
"TIENE_ERROR": true,
"ERROR": "sample string 5"
}
application/xml, text/xml
Sample:
<GPSResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LipiGasApi.ViewModels.Order"> <ERROR>sample string 5</ERROR> <FECHA>2026-06-03T18:31:51.8482066-04:00</FECHA> <LATITUD>1</LATITUD> <LONGITUD>2</LONGITUD> <TIENE_ERROR>true</TIENE_ERROR> </GPSResponse>