Drop Docs

Retrieve order

Use the Drop order identifier to retrieve a single order record after creation, webhook processing, or reconciliation.

Endpoint

GET /v1/orders/:id

cURL example

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

Node.js example

js
const response = await fetch("https://api.dropsa.co.za/v1/orders/ord_123", {
  headers: {
    "Authorization": "Bearer <access_token>"
  }
});