Drop developers

Retrieve an order

Fetch a delivery by its Drop order ID. Results are scoped to the merchant app that owns the order.

Endpoint

GET https://api.dropsa.co.za/v1/orders/:id

Required scope

orders:read

200 OK

json
{
  "request_id": "req_01HXYZ...",
  "order": {
    "id": "ord_01HXYZ...",
    "reference": "ORD-100245",
    "status": "IN_TRANSIT",
    "delivery": { "customerTrackingCode": "DW-12345" }
  }
}

cURL

bash
curl https://api.dropsa.co.za/v1/orders/ord_01HXYZ \
  -H "Authorization: Bearer <access_token>"

Implementation notes

  • Use the Drop order ID returned by create-order or the reference lookup endpoint for reconciliation.