post
https://stagingstores.xoxoday.com/chef/v1/oauth/api
Retrieve a user's active cart (and its cartId) by userUniqueKey, or fetch a specific cart by cartId.
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
Request Schema
| Parameter | Type | Description |
|---|---|---|
| userUniqueKey | String | Unique identifier of the end user whose active cart should be returned (required unless cartId is passed). |
| cartId | String | Fetch a specific cart by its cart ID instead of by user. |
Response Schema
| Path | Type | Description |
|---|---|---|
| data | object | Root response object. |
| data.searchCart | object | Container for the cart lookup result. |
| data.searchCart.status | number | API execution status (1 = success). |
| data.searchCart.data | object | Cart payload (contains cartId and cart contents). |
| data.searchCart.data.cartId | string | Unique identifier of the returned/created cart. |
Implementation Notes
- Call Search Cart first to obtain the
cartIdused by Add or Update Item to Cart, Update Shipment, Update Payment, and Place Cart Order. - Pass either
userUniqueKeyorcartId. If no cart exists for the user, a new active cart is returned. - The
data.searchCart.datashape is representative; confirm the full cart payload against a live response.

