post
https://stagingstores.xoxoday.com/chef/v1/oauth/api
Fetch full details of a cart order by orderId, including delivered vouchers and per-product delivery status.
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
Request Schema
| Parameter | Type | Description |
|---|---|---|
| orderId | Int | Unique order ID returned by Place Cart Order API. |
Response Schema
| Path | Type | Description |
|---|---|---|
| data | object | Root response object. |
| data.getCartOrderDetails | object | Container for cart order details. |
| data.getCartOrderDetails.status | number | API execution status (1 = success). |
| data.getCartOrderDetails.data | object | Order details payload. |
| data.getCartOrderDetails.data.orderId | number | Unique order ID. |
| data.getCartOrderDetails.data.orderTotal | number | Rounded total amount. |
| data.getCartOrderDetails.data.rawOrderTotal | number | Exact unrounded amount. |
| data.getCartOrderDetails.data.orderDiscount | string | Discount applied; may be blank. |
| data.getCartOrderDetails.data.rawOrderDiscount | string | Exact unrounded discount. |
| data.getCartOrderDetails.data.currencyCode | string | Currency code. |
| data.getCartOrderDetails.data.currencyValue | number | FX multiplier. |
| data.getCartOrderDetails.data.amountCharged | number | Final charged amount. |
| data.getCartOrderDetails.data.orderStatus | string | Order completion status. |
| data.getCartOrderDetails.data.deliveryStatus | string | Delivery status. |
| data.getCartOrderDetails.data.tag | string | Custom tag from request. |
| data.getCartOrderDetails.data.orderDate | string | Order creation timestamp. |
| data.getCartOrderDetails.data.deliveryDate | string | Delivery timestamp. |
| data.getCartOrderDetails.data.shippingDetails | object/null | Shipping details (merchandise only; null otherwise). |
| data.getCartOrderDetails.data.vouchers | array | Delivered voucher objects. |
| data.getCartOrderDetails.data.vouchers[].productId | number | Product ID. |
| data.getCartOrderDetails.data.vouchers[].orderId | number | Order ID. |
| data.getCartOrderDetails.data.vouchers[].voucherCode | string | Voucher code / redemption URL. |
| data.getCartOrderDetails.data.vouchers[].pin | string | PIN (if applicable). |
| data.getCartOrderDetails.data.vouchers[].validity | string | Expiry date. |
| data.getCartOrderDetails.data.vouchers[].amount | number | Voucher amount. |
| data.getCartOrderDetails.data.vouchers[].currency | string | Voucher currency. |
| data.getCartOrderDetails.data.vouchers[].country | string | Country code. |
| data.getCartOrderDetails.data.vouchers[].type | string | Delivery type (code, codePin, url, urlPin). |
| data.getCartOrderDetails.data.vouchers[].currencyValue | number | FX multiplier for the voucher. |
| data.getCartOrderDetails.data.orderProducts | array | Summary of ordered products. |
| data.getCartOrderDetails.data.orderProducts[].orderProductId | number | Order product line ID. |
| data.getCartOrderDetails.data.orderProducts[].productId | number | Product ID. |
| data.getCartOrderDetails.data.orderProducts[].productName | string | Product name. |
| data.getCartOrderDetails.data.orderProducts[].currencyCode | string | Product currency. |
| data.getCartOrderDetails.data.orderProducts[].orderProductStatus | string | Delivery status for this product. |
| data.getCartOrderDetails.data.orderProducts[].denomination | number | Product denomination. |
| data.getCartOrderDetails.data.orderProducts[].quantity | number | Quantity ordered. |
| data.getCartOrderDetails.data.orderProducts[].discountPercent | number | Discount percent applied. |
Implementation Notes
vouchers[]contains the delivered voucher codes;orderProducts[]summarizes each ordered product and its per-product status.typeindicates how the voucher is delivered (code,codePin,url,urlPin).- The response fields above are taken from an actual staging response.

