Skip to content

Skydropx - Track Shipment

This module gets the tracking status of a shipment in Skydropx using the tracking number. It makes a GET request to the /trackings/{tracking_number} endpoint and processes the response to extract the current status, carrier, tracking event history (with status, description, date, and location), and estimated delivery date.

ParameterTypeRequiredDescription
credentials_idcredentialsYesSkydropx credential (provider: skydropx)
tracking_numbertextYesShipment tracking number

A skydropx type credential is required with the following fields:

  • api_token: Skydropx API Token
{
"success": true,
"tracking_number": "MEX123456789",
"status": "in_transit",
"carrier": "fedex",
"tracking_events": [
{
"status": "in_transit",
"description": "Paquete en camino a la siguiente instalacion",
"date": "2026-03-23T10:30:00",
"location": "Ciudad de Mexico, MX"
}
],
"estimated_delivery": "2026-03-25",
"message": "Estado: in_transit"
}
{
"credentials_id": "mi_credencial_skydropx",
"tracking_number": "MEX123456789"
}
  • Endpoint: GET /trackings/{tracking_number}
  • Base: Skydropx API (via helper _skydropxHelper)
  • Documentation: https://docs.skydropx.com/
  • Tracking events may come in tracking_events of the main object or nested in data
  • The description may be in the description field
  • If the status is not available, “UNKNOWN” is displayed
  • Skydropx - Create Shipment / Label (skydropxCreateShipment)
  • Skydropx - Get Rates (skydropxGetRates)
  • Skydropx - Cancel Shipment (skydropxCancelShipment)
  • Skydropx - Get Carriers (skydropxGetCarriers)