BlueCart · Example Payload

Bluecart Order Update Example

RestaurantProcurementWholesaleOrderingFood DistributionHospitalityeCommerce

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

Top-level fields

userIdstatusdeliveryChargerequestedDeliveryDatedeliveryDateshippingDatepaymentStatustrackingInfoaddressesproducts

Example Payload

Raw ↑
{
  "userId": 3001,
  "status": "Processing",
  "deliveryCharge": 25,
  "requestedDeliveryDate": "2026-06-10",
  "deliveryDate": "2026-06-10",
  "shippingDate": "2026-06-09",
  "paymentStatus": "Paid",
  "trackingInfo": "1Z999AA10123456784",
  "addresses": {},
  "products": [
    {
      "productId": 90210,
      "sku": "WINE-CAB-750",
      "name": "Cabernet Sauvignon 750ml",
      "quantity": 12,
      "price": 18.5
    }
  ]
}