Retrieve Pickup Order Details

Returns

Array of pickup order details object object

Child attributes of the pickup order details object

orderId Integer

Unique identifier for this pickup order


orderNumber String

Alphanumeric identifier for the order object


companyId Integer

Company identifier associated with the order


restaurant Object

Restaurant information including name, address, contact phone number and location coordinates


customer Object

Customer information containing name, contact phone number and email address


tips Double

Tips amount for the order


tax Double

Tax amount for the order


discountAmount Double

Discount amount applied to the order


totalOrderCost Double

Total cost for the particular order including all fees and taxes


orderItem Array

Array of order item objects containing details about each item, quantity, price and add-ons


paymentMethod String

Selected payment method for the order (e.g., CARD, CASH, ONLINE)


pickupInstruction String

Pickup related instructions for the order (null if no instructions provided)


expectedPickupDate String

Expected pickup date in UTC for the particular order (yyyy-mm-dd format)


expectedPickupTime String

Expected pickup time in UTC for the particular order (hh:mm:ss format)


orderSource String

Source platform or channel from where the order originated


status String

Current status of the order (e.g., IN_PROGRESS, READY, DONE, CANCEL)

{
  "orderNumber": "99qT5A",
  "restaurant": {
    "name": "Shipday Inc. Demo",
    "address": "101 Jefferson Dr 1st Floor, Menlo Park, CA 94025, USA",
    "phone": "+17372268817",
    "latitude": 37.4832505,
    "longitude": -122.1743908
  },
  "customer": {
    "name": "Mr. Jhon Mason",
    "phone": "+14152392212",
    "email": "jhonMason@gmail.com"
  },
  "tips": 2.5,
  "tax": 1.5,
  "discountAmount": 1.5,
  "totalOrderCost": 13.47,
  "orderItem": [
    {
      "name": "Veggie Duck",
      "detail": "",
      "quantity": 2,
      "unitPrice": 14.95,
      "addOns": ["Onion Rings","Sauce"]
    },
    {
      "name": "Mango Chicken",
      "detail": "",
      "quantity": 2,
      "unitPrice": 13.95,
      "addOns": null
    }
  ],
  "paymentMethod": "CARD",
  "pickupInstruction": "fast",
  "expectedPickupDate": "2025-09-18",
  "expectedPickupTime": "20:45:00",
  "orderSource": "Seamless",
  "companyId": 130616,
  "orderId": 643528,
  "status": "IN_PROGRESS"
}