BlueCart · Example Payload

Bluecart Order Create Result Example

RestaurantProcurementWholesaleOrderingFood DistributionHospitalityeCommerce

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

Top-level fields

orderwarnings

Example Payload

Raw ↑
{
  "order": {
    "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": {},
        "sku": {},
        "name": {},
        "quantity": {},
        "price": {}
      }
    ],
    "addresses": {},
    "totals": {}
  },
  "warnings": [
    "Requested delivery date is outside the standard window."
  ]
}