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

Authorizations

Authorization
string
header
required

Path Parameters

order_id
integer
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"