get_store_cart
Retrieve a single cart with full line items, customer, and total breakdown to inspect abandoned carts before sending recovery emails.
Instructions
Retrieve a single cart with its full line items, customer, and total breakdown.
Use to inspect what's in an abandoned cart before triggering a recovery email. Use list_store_carts to browse and discover cart_ids.
Authenticated via API key. Max 10 concurrent requests. Read-only, safe to retry. Returns 404 if store_id or cart_id is invalid.
Args: store_id: E-commerce store ID. Obtain from list_ecommerce_stores. cart_id: Cart ID. Obtain from list_store_carts.
Returns: JSON with id, customer, currency_code, order_total, tax_total, checkout_url, lines (array of {id, product_id, product_variant_id, quantity, price}), created_at, updated_at.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| store_id | Yes | ||
| cart_id | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |