GoBolt Track and Trace
Inputs
| Name | Type | Description |
|---|---|---|
| Tracking Number | String | Tracking number |
| Username | Credentials | GoBolt service account username |
| Password | Credentials | GoBolt service account password |
Outputs
| Name | Type | Description |
|---|---|---|
| Tracking Found? | Boolean | Whether successfully retrieved any tracking information |
| Status | String | Tracking status: Delivered, In Transit, Ready for Shipment, Ready for Pickup, Problem with Delivery, Returning to Sender, Label Created, More Information Needed |
| Status Description | String | Status description |
| Status Summary | String | Status summary |
| Last Event Date | String | Date of the last update |
| Tracking URL | String | Tracking URL |
| Is Expected Delivery Window Present? | Boolean | Whether an expected delivery window is present |
| Expected Delivery Date | String | Upper limit of the expected delivery window |
| Is Proof of Delivery Present? | Boolean | Whether a proof of delivery is present |
| Proof of Delivery URL | String | A picture with the proof of delivery.(Multiple may be present on the tracking details) |
| Tracking Events | List | Tracking events |
| Tracking Data | Object | Tracking data |
Statuses mapping
{
"Label Created, More Information Needed": [
"CREATED",
"SHIPMENT_CREATED"
],
"Ready for Shipment": [
"CARRIER_PICKED_UP"
],
"Delivered": [
"DELIVERED"
],
"In Transit": [
"OUT_OF_FSA",
"GEOCODED",
"SHIPMENT_PROCESSING",
"RECEIVED_AT_DESTINATION",
"OUT_FOR_DELIVERY"
],
"Returning to Sender": [
"RETURN_TO_SENDER"
],
"Problem with Delivery": [
"GEOCODEDFAILED",
"RATE_FAILED",
"UNSUPPORTED_WEIGHT",
"FAILED",
"ARCHIVED"
],
"Ready for Pickup": [
"PICKUP_READY"
]
}