SEUR - Track Shipment
Description
Section titled “Description”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.
Configuration
Section titled “Configuration”| Parameter | Type | Required | Description |
|---|---|---|---|
| credentials_id | credentials | Yes | SEUR credential (provider: seur) |
| tracking_number | text | Yes | SEUR shipment tracking number |
Credentials
Section titled “Credentials”A seur type credential is required with the following fields:
- api_token: SEUR API Token
Output
Section titled “Output”{ "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"}Usage Example
Section titled “Usage Example”Basic case
Section titled “Basic case”{ "credentials_id": "mi_credencial_seur", "tracking_number": "5012345678901"}API Used
Section titled “API Used”- Endpoint: GET
/tracking/{tracking_number} - Base: SEUR API (via helper
_seurHelper) - Documentation: https://www.seur.com/
- Events may come in the
eventsorhistoryfield depending on the API version - The
deliveredfield indicates whether the package has already been delivered - If the status is not available, “Desconocido” is displayed
Related Nodes
Section titled “Related Nodes”- SEUR - Create Shipment (seurCreateShipment)
- SEUR - Get Rates (seurGetRates)
- SEUR - Cancel Shipment (seurCancelShipment)
- SEUR - Get Label (seurGetLabel)