Docs

Get Order

GET /orders/{orderId}

GET/orders/{orderId}

Required Tokens

FieldTypeRequiredDescription
BearerAuthorization: Bearer <api-key>OptionalYour API key. Pass it as the Bearer token on every request.

Returns full detail for a single order, including billing and delivery information, line item groups, and all line items with their asset data.

Path Parameters

FieldTypeRequiredDescription
orderIdGuidRequiredThe ID of the order. Replace `{{orderId}}` in the URL.

Response

FieldTypeDescription
idGuidOrder ID.
namestringOrder name.
statusstringCurrent status.
internalNotesstringInternal-facing notes.
externalNotesstringExternal/vendor-facing notes.
isDeliveryboolWhether this order requires delivery.
startDateTimeDateTime| nullOrder start date/time.
endDateTimeDateTime| nullOrder end date/time.
billingInformationBillingBilling contact and address details.
billingInformation.namestringBilling contact name.
billingInformation.companystringCompany name.
billingInformation.emailstringEmail.
billingInformation.phonestringPhone.
billingInformation.addressstringStreet address.
billingInformation.citystringCity.
billingInformation.statestringState/province.
billingInformation.countrystringCountry.
billingInformation.postalCodestringPostal/ZIP code.
deliveryInformationDeliveryDelivery address details. Same shape as `billingInformation`.
lineItemGroupsLineItemGroup[]Groups that organize line items within the order.
lineItemGroups[].idGuidGroup ID.
lineItemGroups[].namestringGroup name.
lineItemGroups[].notesstringGroup-level notes.
lineItemGroups[].indexintSort order.
lineItemGroups[].isDeliveryboolWhether this group has its own delivery details.
lineItemGroups[].startDateTimeDateTime| nullGroup start date/time.
lineItemGroups[].endDateTimeDateTime| nullGroup end date/time.
lineItemGroups[].deliveryInformationDeliveryGroup-level delivery details if `isDelivery` is true.
lineItemsLineItem[]All line items on the order.
lineItems[].idGuidLine item ID.
lineItems[].indexintSort order.
lineItems[].quantityintQuantity.
lineItems[].lineItemGroupIdGuidThe group this line item belongs to.
lineItems[].assetProcAssetThe procurement asset for this line item.
lineItems[].asset.procurementIdGuidParent procurement ID.
lineItems[].asset.idGuidAsset ID.
lineItems[].asset.typeobjectAsset type (`{ id, label, icon, lineItemLabel }`).
lineItems[].asset.subAssetsSubAsset[]Sub-assets, each with their own `properties`.
lineItems[].asset.propertiesProperty[]Asset properties (`{ id, templatePropertyId, value }`).