Skip to main content
GET
/
orders
/
{order_id}
Retrieve an order
curl --request GET \
  --url https://app.gomangrove.com/api/v1/orders/{order_id} \
  --header 'Authorization: <api-key>'
{
  "id": 1529,
  "order_status": "COMPLETE",
  "customer": "AcmeCo",
  "reference": "A1234567890",
  "deal_date": "2025-01-28",
  "expiry_date": null,
  "currency": "USD",
  "order_terms": "Pay on delivery",
  "delivery_method": "RETIREMENT",
  "deliveries": [
    {
      "friendly_id": "dl_H8pvrPHBQ3Dd76oL",
      "project_name": "Southeast Capture",
      "quantity": 20,
      "price_in_cents_in_currency": 12000,
      "delivery_total_in_cents_in_currency": 12000,
      "currency": "USD",
      "estimated_delivery_date": "2025-02-28",
      "delivered_date": "2025-02-21",
      "delivery_status": "DELIVERED",
      "fulfilled_quantity": 20,
      "delivered_quantity": 20,
      "is_paid": true
    }
  ],
  "created_at": "2024-05-10T15:58:21.209Z",
  "updated_at": "2024-05-10T15:58:21.209Z"
}

Authorizations

Authorization
string
header
required

Path Parameters

order_id
integer<int32>
required

Response

200

id
integer
default:0
Example:

1529

order_status
string
Example:

"COMPLETE"

customer
string
Example:

"AcmeCo"

reference
string
Example:

"A1234567890"

deal_date
string
Example:

"2025-01-28"

expiry_date
any
currency
string
Example:

"USD"

order_terms
string
Example:

"Pay on delivery"

delivery_method
string
Example:

"RETIREMENT"

deliveries
object[]
created_at
string
Example:

"2024-05-10T15:58:21.209Z"

updated_at
string
Example:

"2024-05-10T15:58:21.209Z"