Retrieve Pickup Order Details
Returns
Array of pickup order details object object
Child attributes of the pickup order details object
orderId
IntegerUnique identifier for this pickup order
orderNumber
StringAlphanumeric identifier for the order object
companyId
IntegerCompany identifier associated with the order
restaurant
ObjectRestaurant information including name, address, contact phone number and location coordinates
customer
ObjectCustomer information containing name, contact phone number and email address
tips
DoubleTips amount for the order
tax
DoubleTax amount for the order
discountAmount
DoubleDiscount amount applied to the order
totalOrderCost
DoubleTotal cost for the particular order including all fees and taxes
orderItem
ArrayArray of order item objects containing details about each item, quantity, price and add-ons
paymentMethod
StringSelected payment method for the order (e.g., CARD, CASH, ONLINE)
pickupInstruction
StringPickup related instructions for the order (null if no instructions provided)
expectedPickupDate
StringExpected pickup date in UTC for the particular order (yyyy-mm-dd format)
expectedPickupTime
StringExpected pickup time in UTC for the particular order (hh:mm:ss format)
orderSource
StringSource platform or channel from where the order originated
status
StringCurrent 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"
}