> ## Documentation Index
> Fetch the complete documentation index at: https://docs.agentcard.sh/llms.txt
> Use this file to discover all available pages before exploring further.

# buy_reorder

> Re-create a cart from a past order (use the order id from buy_order_history), making it the active cart.

Connect to `https://mcp.agentcard.sh/mcp` with the **user's connection token** (or a `buy_token` for org-owned accounts).

<Note>Not in the default `tools/list`. It is still callable by exact name, and appears when the client sends the `x-expert-tools: 1` header.</Note>

## What it does

Re-create a cart from a past order (use the order id from buy\_order\_history), making it the active cart. Review with buy\_view\_cart, then buy\_checkout.

## Inputs

| Field                   | Type   | Description                           |
| ----------------------- | ------ | ------------------------------------- |
| `merchant` *(required)* | string |                                       |
| `order_id` *(required)* | string | the order id from buy\_order\_history |

## Returns

None.

## Example call

```json theme={null}
{
  "tool": "buy_reorder",
  "arguments": {
    "merchant": "\u2026",
    "order_id": "\u2026"
  }
}
```
