🔑 Hermes DE Track & Trace
The action is used to get the tracking information from Hermes Germany.
Credentials
The credentials should be requested from Hermes
Inputs
Name | Type | Description |
---|---|---|
Tracking Number | String | Tracking number |
Username | String | Hermes DE username |
Password | String | Hermes DE password |
Outputs
Name | Type | Description |
---|---|---|
Tracking Found? | Boolean | Whether the tracking information was found True / False |
Status | String | Tracking status |
Status Description | String | Detailed description of the tracking status |
Ship Date | String | The date of the shipment. Format: YYYY-MM-DDThh:mm:ss |
Last Event Date | String | The date of the last tracking event. Format: YYYY-MM-DDThh:mm:ss |
Tracking Information | List | List of all the tracking events. See the example below |
Sample Response
Activity History
shipmentID: '',
result: { code: 'OK' },
receiverAddress: { city: '', zipCode: '', countryCode: '' },
deliveryForecast: { fixed: false },
status: [
{
timestamp: '2021-08-30T09:20:20+02:00',
code: '0-3-0',
description: 'The parcel has not yet arrived at the Hermes depot DEP Oranienburg (2091)'
},
{
timestamp: '2021-08-23T12:38:00+02:00',
code: '0-0-0',
description: 'The parcel has been announced electronically to Hermes.'
}
]
}
Updated 12 months ago