Skip to main content
POST
/
v1
/
orders
/
{id}
/
items
/
{itemId}
/
force-complete
Force complete an order item
curl --request POST \
  --url http://localhost:3000/v1/orders/{id}/items/{itemId}/force-complete \
  --header 'Content-Type: application/json' \
  --data '
{
  "tote_id": "<string>",
  "bag_id": "<string>"
}
'
{
  "success": true,
  "message": "<string>"
}

Path Parameters

id
string
required

Order ID

itemId
string
required

Order item ID

Body

application/json
tote_id
string

Tote ID for ambient items

bag_id
string

Bag ID for cold items

Response

Item force-completed

success
boolean
required
message
string