> Portal Navigation:
> 
> - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version.
> - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages).
> - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`).
> - Top-level index of all portals: https://dev.wix.com/docs/llms.txt
> - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt

# DeleteCurrentCart

# Package: purchaseFlow

# Namespace: CurrentCartService

# Method link: https://dev.wix.com/docs/api-reference/business-solutions/e-commerce/purchase-flow/cart-v2/delete-current-cart.md

## Permission Scopes:
Write Carts V2: SCOPE.ECOM.WRITE-CARTS-V2

## Introduction

Deletes the customer's current cart.

---

## REST API

### Schema

```
 Method: deleteCurrentCart
 Description: Deletes the customer's current cart.
 URL: https://www.wixapis.com/ecom/v2/carts/current
 Method: DELETE
 Return type: DeleteCurrentCartResponse
  EMPTY-OBJECT {}


```

### Examples

### Delete Current Cart
Deletes the current cart of the site visitor or member making the call.

```curl
curl -X DELETE \
'https://www.wixapis.com/ecom/v2/carts/current' \
-H 'Authorization: <AUTH>'
```

---

## JavaScript SDK

### Schema

```
 Method: wixClientAdmin.ecom.currentCartV2.deleteCurrentCart()
 Description: Deletes the customer's current cart.
 Return type: PROMISE<DeleteCurrentCartResponse>
  EMPTY-OBJECT {}


```

### Examples

### Delete the current cart
```javascript
import { currentCartV2 } from "@wix/ecom";

async function deleteCurrentCart() {
  await currentCartV2.deleteCurrentCart();
}

```

### deleteCurrentCart (self-hosted)
Self-hosted SDK calls require you to [create a client](https://dev.wix.com/docs/sdk/articles/work-with-the-sdk/about-the-wix-client.md).

```javascript
import { createClient } from '@wix/sdk';
import { currentCartV2 } from '@wix/ecom';
// Import the auth strategy for the relevant access type
// Import the relevant host module if needed

const myWixClient = createClient ({
  modules: { currentCartV2 },
  // Include the auth strategy and host as relevant
});


async function deleteCurrentCart() {
  const response = await myWixClient.currentCartV2.deleteCurrentCart();
};
```

---