DoorDash - Get Tracking Info
Returns delivery tracking information from DoorDash Drive for a given external delivery ID.
DoorDash - Get Tracking Info
Return delivery tracking information from DoorDash Drive for a given external delivery ID.
This action requires a DoorDash module connection.
Inputs
| Name | Type | Required | Description |
|---|---|---|---|
| External Delivery ID | String | Yes | The external delivery ID of the DoorDash delivery to track. |
Outputs
| Name | Type | Description |
|---|---|---|
| Found Tracking? | Boolean | Whether any tracking info was found for the delivery. |
| Status | String | Raw DoorDash delivery status, for example created, picked_up, delivered, or cancelled. |
| Status Description | String | Human-readable description of the DoorDash delivery status. |
| DG Status | String | DoorDash status mapped to the DigitalGenius internal status. Possible mapped values are Ready for Shipment, In Transit, and Delivered. This output is empty when the DoorDash status is unmapped, for example cancelled. |
| Estimated Delivery Date | String | Estimated dropoff delivery date and time. |
| Last Event Date | String | Date of the last delivery update. |
Run the action
- Add the DoorDash module connection required by this action.
- Enter the DoorDash delivery identifier in External Delivery ID.
- Run the action.
- Check Found Tracking? to confirm whether tracking information was found.
- Use Status, Status Description, DG Status, Estimated Delivery Date, and Last Event Date in later Flow steps.
Status mapping
The action returns both the raw DoorDash status and a DigitalGenius status when a mapping is available.
| DoorDash status | DG Status |
|---|---|
created | Ready for Shipment |
confirmed | Ready for Shipment |
enroute_to_pickup | Ready for Shipment |
arrived_at_pickup | Ready for Shipment |
picked_up | In Transit |
enroute_to_dropoff | In Transit |
arrived_at_dropoff | In Transit |
delivered | Delivered |
cancelled | Empty / unmapped |
Notes
- Use Status when you need the raw DoorDash delivery state.
- Use DG Status when you need the tracking state normalized for DigitalGenius flows.
- Check Found Tracking? before using the tracking fields in later steps.