GET deliveries/{purchaseOrderID}

Returns information about a delivery-ready purchase order matching the supplied Purchase Order ID.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
purchaseOrderID Purchase Order ID integer Required

Body Parameters

None.

Response Information

Resource Description

Returns information about a delivery-ready purchase order matching the supplied Purchase Order ID.

PurchaseOrderModel
NameDescriptionTypeAdditional information
PurchaseOrderID ID of the purchase Order integer None.
PurchaseOrderGuid Unique GIUD of the Purchase Order globally unique identifier None.
User User who created the Purchase Order UserBaseModel None.
PurchaseOrderReference StoreFeeder user facing reference number for the Purchase Order string None.
DateRaised Date the Purchase Order was originally raised date None.
Supplier Supplier that the Purchase Order is for PurchaseOrderSupplierModel None.
Warehouse Warehouse that the Purchase Order is for WarehouseBaseModel None.
DateDue Date that the Purchase Order is due to be delivered date None.
PurchaseOrderStatus Status of the Purchase Order None.

Response Formats

application/json, text/json

Sample:
{
  "PurchaseOrderID": 123,
  "PurchaseOrderGuid": "65037963-b82a-4748-9d14-28f9613e1324",
  "User": {
    "UserID": 9,
    "UserName": "Johnny UserMan"
  },
  "PurchaseOrderReference": "123_abc",
  "DateRaised": "2026-06-10T00:03:04.8715535+00:00",
  "Supplier": {
    "SupplierCode": "exSup",
    "SuppliersReference": "SuppliersReference",
    "Currency": {
      "CurrencyID": 4,
      "CurrencyCode": "GBP",
      "CurrencyName": "British Pound",
      "Symbol": "£"
    },
    "SupplierID": 2,
    "Name": "Example Supplier"
  },
  "Warehouse": {
    "WarehouseName": "Demo Warehouse",
    "WarehouseGuid": "4e4170d6-c781-41ce-9db3-9869065dc944",
    "WarehouseID": 78
  },
  "DateDue": "2026-06-12T00:03:04.8715535+00:00",
  "PurchaseOrderStatus": "SentToSupplier",
  "DeliveryCost": 5.99,
  "Subtotal": 15.99,
  "TotalVat": 4.67,
  "Total": 25.99,
  "Currency": {
    "CurrencyID": 4,
    "CurrencyCode": "GBP",
    "CurrencyName": "UK Pound",
    "Symbol": "£"
  },
  "DateSent": "2026-06-10T00:23:04.8715535+00:00",
  "PaymentReference": "Example Reference",
  "PurchaseOrderLines": [
    {
      "PurchaseOrderLineID": 789,
      "ProductID": 1,
      "ProductSKU": "ABC",
      "QtyOrdered": 10,
      "QtyReceived": 0,
      "PurchaseOrderDetailsStatus": "AwaitingProduct",
      "SinglePrice": 1.99,
      "TaxRate": 20.0,
      "LineVat": 1.78,
      "LineTotal": 19.99,
      "DeliveryStatusID": 1,
      "DeliveryStatus": "Pending",
      "QtyWrittenOff": 0.0,
      "CartonQty": 10,
      "AddedByUserID": 1,
      "BookedInByUserID": 1,
      "TotalUnitsOrdered": 10,
      "TotalUnitsReceived": 0,
      "TotalUnitsWrittenOff": 0,
      "DateReceived": "2026-06-10T00:03:04.8715535Z"
    }
  ],
  "UpdatedDate": "2026-06-10T00:03:04.8715535Z",
  "EstimatedPalletCount": 5,
  "Note": "Add any notes relating to this PO \\ Delivery"
}