Skip to content

SEUR - Track Shipment

This module tracks a shipment in SEUR using the tracking number. It makes a GET request to the /tracking/{tracking_number} endpoint and processes the response to extract the current status, estimated delivery date, delivered indicator, and the event history with date, description, location, and status code.

ParameterTypeRequiredDescription
credentials_idcredentialsYesSEUR credential (provider: seur)
tracking_numbertextYesSEUR shipment tracking number

A seur type credential is required with the following fields:

  • api_token: SEUR API Token
{
"success": true,
"tracking_number": "5012345678901",
"status": "En reparto",
"estimated_delivery": "2026-03-25",
"delivered": false,
"events": [
{
"date": "2026-03-23T10:30:00",
"event": "Recogido en origen",
"location": "Madrid",
"status_code": "PU"
}
],
"message": "Estado: En reparto"
}
{
"credentials_id": "mi_credencial_seur",
"tracking_number": "5012345678901"
}
  • Endpoint: GET /tracking/{tracking_number}
  • Base: SEUR API (via helper _seurHelper)
  • Documentation: https://www.seur.com/
  • Events may come in the events or history field depending on the API version
  • The delivered field indicates whether the package has already been delivered
  • If the status is not available, “Desconocido” is displayed
  • SEUR - Create Shipment (seurCreateShipment)
  • SEUR - Get Rates (seurGetRates)
  • SEUR - Cancel Shipment (seurCancelShipment)
  • SEUR - Get Label (seurGetLabel)