Skip to content

SevenSenders - Track Shipment

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.

ParameterTypeRequiredDescription
credentials_idcredentialsYesSevenSenders credential (provider: sevensenders)
tracking_numbertextYesShipment tracking number

A sevensenders type credential is required with the following fields:

  • api_key: SevenSenders API Key
{
"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"
}
{
"credentials_id": "mi_credencial_sevensenders",
"tracking_number": "DE123456789"
}
  • Events may come in the tracking_events field of the main object or nested in data
  • The event description may be in the description or status_text field
  • If the status is not available, “UNKNOWN” is displayed
  • SevenSenders - Create Shipment (sevensendersCreateShipment)
  • SevenSenders - Get Carriers (sevensendersGetCarriers)
  • SevenSenders - Cancel Shipment (sevensendersCancelShipment)
  • SevenSenders - Get Labels (sevensendersGetLabels)