Skydropx - Track Shipment
Description
Section titled “Description”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.
Configuration
Section titled “Configuration”| Parameter | Type | Required | Description |
|---|---|---|---|
| credentials_id | credentials | Yes | Skydropx credential (provider: skydropx) |
| tracking_number | text | Yes | Shipment tracking number |
Credentials
Section titled “Credentials”A skydropx type credential is required with the following fields:
- api_token: Skydropx API Token
Output
Section titled “Output”{ "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"}Usage Example
Section titled “Usage Example”Basic case
Section titled “Basic case”{ "credentials_id": "mi_credencial_skydropx", "tracking_number": "MEX123456789"}API Used
Section titled “API Used”- Endpoint: GET
/trackings/{tracking_number} - Base: Skydropx API (via helper
_skydropxHelper) - Documentation: https://docs.skydropx.com/
- Tracking events may come in
tracking_eventsof the main object or nested indata - The description may be in the
descriptionfield - If the status is not available, “UNKNOWN” is displayed
Related Nodes
Section titled “Related Nodes”- Skydropx - Create Shipment / Label (skydropxCreateShipment)
- Skydropx - Get Rates (skydropxGetRates)
- Skydropx - Cancel Shipment (skydropxCancelShipment)
- Skydropx - Get Carriers (skydropxGetCarriers)