> 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/delete-current-cart.md ## Permission Scopes: Manage eCommerce - all permissions: SCOPE.DC-ECOM-MEGA.MANAGE-ECOM ## Introduction Deletes the current site visitor's cart. >**Note:** >This method requires [visitor or member authentication](https://dev.wix.com/docs/rest/articles/getting-started/access-types-and-permissions.md). --- ## REST API ### Schema ``` Method: deleteCurrentCart Description: Deletes the current site visitor's cart. >**Note:** >This method requires [visitor or member authentication](https://dev.wix.com/docs/rest/articles/getting-started/access-types-and-permissions.md). URL: https://www.wixapis.com/ecom/v1/carts/current Method: DELETE Return type: DeleteCartResponse EMPTY-OBJECT {} ``` ### Examples ### Deletes the current site visitor's cart ```curl curl -X DELETE \ 'https://www.wixapis.com/ecom/v1/carts/current' \ -H 'Authorization: ' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.purchaseFlow.CurrentCartService.deleteCurrentCart() Description: Deletes the current site visitor's cart. >**Note:** >This method requires [visitor or member authentication](https://dev.wix.com/docs/rest/articles/getting-started/access-types-and-permissions.md). Return type: PROMISE EMPTY-OBJECT {} ``` ### Examples ### Delete the current site visitor's cart ```javascript /************************************** * Backend code - my-backend-file.web.js/ts * *************************************/ import { Permissions, webMethod } from '@wix/web-methods'; import { currentCart } from '@wix/ecom'; export const myDeleteCurrentCartFunction = webMethod(Permissions.Anyone, async () => { try { await currentCart.deleteCurrentCart(); console.log('Success! Deleted cart'); return; } catch (error) { console.error(error); // Handle the error } }); /************* * Page code * ************/ import { myDeleteCurrentCartFunction } from 'backend/my-backend-file.web'; myDeleteCurrentCartFunction() .then(() => { console.log('Success! Deleted current cart'); return; }) .catch((error) => { console.error(error); // Handle the error }); ``` ### 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 { currentCart } from '@wix/ecom'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { currentCart }, // Include the auth strategy and host as relevant }); async function deleteCurrentCart() { const response = await myWixClient.currentCart.deleteCurrentCart(); }; ``` ---