Skip to main content
POST
/
v1
/
receiving
/
confirm-cart-staging
Confirm cart moved to staging zone
curl --request POST \
  --url http://localhost:3000/v1/receiving/confirm-cart-staging \
  --header 'Content-Type: application/json' \
  --data '
{
  "cart_id": "<string>",
  "order_id": "<string>"
}
'
{
  "success": true,
  "cart_location": "<string>",
  "message": "<string>"
}

Body

application/json
cart_id
string
required

Cart ID

order_id
string

Order ID

Response

Cart moved to staging

success
boolean
required
cart_location
string
required
message
string
required