🔑 PostAG Track & Trace
This action is used to get the tracking information from PostAG for a specified tracking number
This action uses the following endpoint:
- POST https://customerservices.post.at/api/v1/GetParcelDetail?format=json
- Basic Authentication Method - requires Username and Password from the Merchant
Inputs
Name | Type | Description |
---|---|---|
Tracking Number | String | This can be the Merchant Order Number or Tracking Number |
Username | String | Username |
Password | String | Password |
Outputs
Name | Type | Description |
---|---|---|
Found Tracking? | Boolean | Whether the tracking information was found True / False |
DG Shipping Status | String | Tracking status: Ready for Shipment, Delivered, In Transit, Problem with Delivery, Returning to Sender, Ready for Pickup, Label Created |
Status Description | String | Description of the status |
Last Event Date | String | The date of the last tracking event. Format: YYYY-MM-DDThh:mm:ss |
Raw Data | Object | Tracking Data |
Statuses mapping
{
"Label Created": [
"The sender has provided electronic shipment information",
"Pick up order received"
],
"Ready for Shipment": [
],
"Delivered": [
"Item delivered",
"Item delivered to consignee",
"Delivered to Letterbox",
"Item delivered to authorized representative",
"Item delivered to neighbor",
"Item delivered to flat mate",
"Item delivered to employee/colleague",
"Item delivered to alternative address",
"Item picked up at Pick-Up Station",
"Item delivered - contract signed"
],
"In Transit": [
"Item distributed",
"Item forwarded",
"Item is out for delivery",
"Item accepted",
"Item picked up",
"Item handed over to customs authority for final delivery",
"COD amount cleared internally",
"COD amount processed for transfer",
"Item in customs declaration process",
"Clarification",
"Item accepted abroad",
"Item leaving warehouse for customs declaration/processing",
"Insufficient packaging repaired",
"Delay due to damage - content checked",
"Item could not be delivered – further delivery attempt",
"Item handed over at the airport",
"Item has been cleared customs-free",
"Item arrived at desired postal service point",
"Item in warehouse - obstacle to customs declaration",
"Export confirmation",
"Export declaration transmitted",
"Item passed customs-/security check",
"Item presented to customs/security",
"Delivery adjusted",
"Item redirected",
"Transit",
"Item will be delivered again"
],
"Returning to Sender": [
"Item could not be delivered - return",
"Item delivered to employee/colleague",
"Item refused by consignee - return",
"Item returned to sender - address incomplete",
"Consignee unknown - return",
"Item damaged - return"
],
"Problem with Delivery": [
"Address incorrect / incomplete",
"Consignee not available at time of delivery - notified",
"Item could not be delivered",
"Item refused, delivery not in time",
"Pickup order cancelled",
"Item not accepted - damaged",
"Item refused because of incomplete shipment",
"Item refused, COD amount incorrect",
"Item refused",
"Electronic shipment data was cancelled by the sender",
"Item refused, contact person missing",
"Item refused, shipment not ordered",
"Delay - damage report compiled",
"Consignee not available at time of delivery - notified",
"Additional information for customs required",
"Customs declaration delay - missing proof of value",
"Customs declaration delay - missing import licence",
"Delay due to incomplete invoice",
"Delay due to banned content",
"Delay due to import ban in country of destination",
"Delay due to missing VAT number",
"Delay due to missing certificate of origin",
"Consignee address incomplete",
"Delay due to missing documents"
],
"Ready for Pickup": [
"e-Notification sent",
"Item ready for pick up at postal service point",
"Post Pick-Up Box - Item picked up",
"Item arrived at Post Pick-Up Box",
"Item ready for pick up",
"Item ready for pick up at depot"
]
}
Updated 2 days ago