Orders - Retrieve All Dropoff ETAs
Overview
This endpoint allows you to list all order Dropoff ETAs for a given account for the current business day.
Request
GET /v1/accounts/{account_uuid}/orders/dropoff_etas
Example Request
GET /v1/accounts/3584a197b5a9/orders/dropoff_etas
Response
Response Values
Please see the example response documented below.
Key | Type | Value | Description |
---|---|---|---|
uuid | string | dc5a9b859fb2 | A unique ID for the order |
partners_unique_internal_order_id | string | z133da1e912e | A unique order ID, as passed in by you at the point of the order being created. |
status | string | "created" | The status of the order |
dropoff_eta | integer, unix timestamp | 1721274744 | The dropoff ETA in Unix timestamp format |
Example Response
[
{
"uuid": "z133da1e912e",
"status": "created",
"partners_unique_internal_order_id": "partners_uuid_1",
"dropoff_eta": 1721274744
},
{
"uuid": "z1589f1a678d",
"status": "created",
"partners_unique_internal_order_id": "partners_uuid_2",
"dropoff_eta": 1721274760
}
]