mark_order_placed
Confirm and finalize a completed Kroger order by marking the cart as placed, moving it to order history, and optionally adding notes for future reference.
Instructions
Mark the current cart as an order that has been placed and move it to order history.
Use this after you've completed checkout on the Kroger website/app.
Args:
order_notes: Optional notes about the order
Returns:
Dictionary confirming the order was recorded
Input Schema
Name | Required | Description | Default |
---|---|---|---|
order_notes | No |
Input Schema (JSON Schema)
{
"properties": {
"order_notes": {
"default": null,
"title": "Order Notes",
"type": "string"
}
},
"type": "object"
}