SevenSenders - Track Shipment
Description
Section titled “Description”This module gets the tracking status of a shipment in SevenSenders using the tracking number. It makes a GET request to the /tracking/{tracking_number} endpoint and processes the response to extract the current status, carrier, and the tracking event history with status, description, date, and location.
Configuration
Section titled “Configuration”| Parameter | Type | Required | Description |
|---|---|---|---|
| credentials_id | credentials | Yes | SevenSenders credential (provider: sevensenders) |
| tracking_number | text | Yes | Shipment tracking number |
Credentials
Section titled “Credentials”A sevensenders type credential is required with the following fields:
- api_key: SevenSenders API Key
Output
Section titled “Output”{ "success": true, "tracking_number": "DE123456789", "status": "in_transit", "carrier": "dhl_de", "tracking_events": [ { "status": "in_transit", "description": "Package in transit", "date": "2026-03-23T10:30:00Z", "location": "Berlin, DE" } ], "message": "Estado: in_transit"}Usage Example
Section titled “Usage Example”Basic case
Section titled “Basic case”{ "credentials_id": "mi_credencial_sevensenders", "tracking_number": "DE123456789"}API Used
Section titled “API Used”- Endpoint: GET
/tracking/{tracking_number} - Base: SevenSenders API (via helper
_sevensendersHelper) - Documentation: https://docs.sevensenders.com/
- Events may come in the
tracking_eventsfield of the main object or nested indata - The event description may be in the
descriptionorstatus_textfield - If the status is not available, “UNKNOWN” is displayed
Related Nodes
Section titled “Related Nodes”- SevenSenders - Create Shipment (sevensendersCreateShipment)
- SevenSenders - Get Carriers (sevensendersGetCarriers)
- SevenSenders - Cancel Shipment (sevensendersCancelShipment)
- SevenSenders - Get Labels (sevensendersGetLabels)