🔑 Quiver Track & Trace
The action is used to get the tracking information from Quiver.
https://quiver.readme.io/reference/taskservice_querydeliveries
Inputs
Name | Type | Description |
---|---|---|
Tracking ID | String | Quiver tracking id |
API Key | SensitiveString | API Key received from Quiver |
Outputs
Name | Type | Description |
---|---|---|
Found Tracking? | Boolean | Whether the tracking information was found True / False |
Success | Boolean | Whether API Call was successful |
Shipping Status | String | Tracking status: Ready for Shipment, Delivered, In Transit, Problem with Delivery, Returning to Sender, Ready for Pickup |
Tracking URL | String | Quiver Tracking URL |
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, More Information Needed": [
"NOT_STARTED"
],
"Ready for Shipment": [
"READY_FOR_COLLECTION",
"OUT_FOR_COLLECTION"
],
"Delivered": [
"COMPLETED"
],
"In Transit": [
"COLLECTED",
"OUT_FOR_DELIVERY"
],
"Returning to Sender": [
"CANCELLED"
],
"Problem with Delivery": [
"FAILED"
],
"Ready for Pickup": ]
}
Updated 5 months ago