latestOpenAPI 3.0.12026-08-18132038.0 KB

310150fbd68d

Orders

Show a single order

get/V1/orders/{id}

Response

lookup by plunet_id

idstring nullable

Plunet order id

plunet_idstring nullable

Same as id

order_referencestring
quote_numberstring nullable

Source quote's order_reference, if the order originated from a quote.

project_namestring nullable
project_manager_memostring nullable
propertiesobject nullable

Internal metadata (TMS jobs, CAT info, job dates).

statusstring nullable
all_items_approvedboolean
currencystring nullable

Internal currency (always EUR).

total_pricenumber float nullable

Order total in internal currency (EUR).

client_ccystring nullable

Customer-facing currency (matches the PDF invoice/quote).

total_price_in_client_ccynumber float nullable

Order total in the customer-facing currency.

due_datestring date-time nullable
created_atstring date-time
updated_atstring date-time

Example response

{
  "id": "O-78901",
  "order_reference": "ORD-2025-789",
  "quote_number": "Q-1446-01",
  "status": "completed",
  "all_items_approved": true,
  "client": {
    "id": 12345,
    "name": "AcmeCorp"
  },
  "currency": "EUR",
  "total_price": 4117.92,
  "client_ccy": "USD",
  "total_price_in_client_ccy": 4500,
  "items": [
    {
      "id": "I-44556",
      "language_source": "en-US",
      "language_target": "fr-FR",
      "quantity": 1200,
      "price": 1372.64,
      "currency": "EUR",
      "client_price": 1500,
      "client_currency": "USD",
      "status": "approved"
    }
  ]
}