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
bashcurl https://api.dropsa.co.za/v1/orders/ord_123 \
-H "Authorization: Bearer <access_token>"Node.js example
jsconst response = await fetch("https://api.dropsa.co.za/v1/orders/ord_123", {
headers: {
"Authorization": "Bearer <access_token>"
}
});