Skip to main content
GET
/
admin
/
deliveries
/
{deliveryId}
Get delivery without order
curl --request GET \
  --url https://api.service.getjusto.com/v3/admin/deliveries/{deliveryId} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "_id": "<string>",
    "websiteId": "<string>",
    "storeId": "<string>",
    "orderId": "<string>",
    "partner": "<string>",
    "specialCode": "<string>",
    "externalId": "<string>",
    "price": 123,
    "priceWithoutTax": 123,
    "isCash": true,
    "isRoundTrip": true,
    "instructions": "<string>",
    "fromName": "<string>",
    "toName": "<string>",
    "fromPlaceId": "<string>",
    "toPlaceId": "<string>",
    "fromAddressLine2": "<string>",
    "toAddressLine2": "<string>",
    "fromLocation": {
      "address": "<string>",
      "addressSecondary": "<string>",
      "placeId": "<string>",
      "streetAddress": "<string>",
      "extendedAddress": "<string>",
      "contactPhone": "<string>",
      "contactName": "<string>",
      "lat": 123,
      "lng": 123
    },
    "toLocation": {
      "address": "<string>",
      "addressSecondary": "<string>",
      "placeId": "<string>",
      "streetAddress": "<string>",
      "extendedAddress": "<string>",
      "contactPhone": "<string>",
      "contactName": "<string>",
      "lat": 123,
      "lng": 123
    },
    "driverPassword": "<string>",
    "trackingURL": "<string>",
    "createdAt": "2020-01-01T00:00:00.000Z",
    "forDate": "2020-01-01T00:00:00.000Z",
    "canceledAt": "2020-01-01T00:00:00.000Z",
    "completedAt": "2020-01-01T00:00:00.000Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.getjusto.com/llms.txt

Use this file to discover all available pages before exploring further.

Obtiene el detalle de una entrega sin pedido de la marca autorizada. Estas entregas son despachos de Justo Delivery creados sin un pedido de Justo Ecommerce asociado, por lo que el seguimiento se hace directamente sobre la entrega y no sobre una orden ecommerce. El identificador puede ser _id, externalId o specialCode. Usa este endpoint para consultar el estado actual, revisar la ruta, confirmar datos de contacto o sincronizar el estado de una entrega creada desde un sistema externo. La respuesta incluye estado, origen, destino, precio, datos de seguimiento y metadata operativa disponible para la entrega.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

deliveryId
string
required

ID Justo, specialCode o externalId de la entrega sin pedido.

Response

The OpenAPI spec

success
boolean
Example:

true

data
object

Entrega de Justo Delivery creada sin un pedido de Justo Ecommerce asociado. Se usa para despachos manuales o integraciones externas que necesitan logística fuera del checkout de Justo.