BlueCart · Example Payload

Bluecart Order Example

RestaurantProcurementWholesaleOrderingFood DistributionHospitalityeCommerce

Bluecart Order Example is an example object payload from BlueCart, with 15 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

orderIdclientIdvendorIdstatusdeliveryTypecurrencydeliveryChargerequestedDeliveryDatedeliveryDateshippingDatecreationDatelastUpdateDateproductsaddressestotals

Example Payload

Raw ↑
{
  "orderId": 100245,
  "clientId": 5012,
  "vendorId": 880,
  "status": "New",
  "deliveryType": "Delivery",
  "currency": "USD",
  "deliveryCharge": 25,
  "requestedDeliveryDate": "2026-06-10",
  "deliveryDate": "2026-06-10",
  "shippingDate": "2026-06-09",
  "creationDate": "2026-06-02T14:30:00Z",
  "lastUpdateDate": "2026-06-02T15:00:00Z",
  "products": [
    {
      "productId": 90210,
      "sku": "WINE-CAB-750",
      "name": "Cabernet Sauvignon 750ml",
      "quantity": 12,
      "price": 18.5
    }
  ],
  "addresses": {},
  "totals": {}
}