> 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 # BulkDeleteAbandonedCheckouts # Package: checkout # Namespace: AbandonedCheckoutService # Method link: https://dev.wix.com/docs/api-reference/business-solutions/e-commerce/purchase-flow/checkout/abandoned-checkout/bulk-delete-abandoned-checkouts.md ## Permission Scopes: Manage Orders: SCOPE.DC-STORES.MANAGE-ORDERS ## Introduction Deletes multiple abandoned checkouts. --- ## REST API ### Schema ``` Method: bulkDeleteAbandonedCheckouts Description: Deletes multiple abandoned checkouts. URL: https://www.wixapis.com/ecom/v1/bulk/abandoned-checkout/delete Method: POST # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: abandonedCheckoutIds Method parameters: param name: abandonedCheckoutIds | type: array | description: Abandoned checkout GUIDs to be deleted. | required: true Return type: BulkDeleteAbandonedCheckoutsResponse - name: results | type: array | description: Results of the bulk delete operation. - name: itemMetadata | type: ItemMetadata | description: GUID of the abandoned checkout that was deleted. - name: id | type: string | description: Item GUID. Provided only whenever possible. For example, `itemId` can't be provided when item creation has failed. - name: originalIndex | type: integer | description: Index of the item within the request array. Allows for correlation between request and response items. - name: success | type: boolean | description: Whether the requested action for this item was successful. When `false`, the `error` field is returned. - name: error | type: ApplicationError | description: Details about the error in case of failure. - name: code | type: string | description: Error code. - name: description | type: string | description: Description of the error. - name: data | type: object | description: Data related to the error. - name: bulkActionMetadata | type: BulkActionMetadata | description: Metadata about the bulk action. - name: totalSuccesses | type: integer | description: Number of items that were successfully processed. - name: totalFailures | type: integer | description: Number of items that couldn't be processed. - name: undetailedFailures | type: integer | description: Number of failures without details because detailed failure threshold was exceeded. ``` ### Examples ### Bulk Delete Abandoned Checkouts ```curl curl -X POST \ 'https://www.wixapis.com/ecom/v1/bulk/abandoned-checkouts/delete' \ -H 'Content-Type: application/json' \ -H 'Authorization: ' \ -d '{ "abandonedCheckoutIds": [ "b4ebb0b8-4482-4693-ae09-7b47e977484c", "f126d944-c0ae-4474-b416-3285e19ada7e", "e2bb2326-5cb0-47f8-a0c5-88cd8896a96b" ] }' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.checkout.AbandonedCheckoutService.bulkDeleteAbandonedCheckouts(abandonedCheckoutIds) Description: Deletes multiple abandoned checkouts. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: abandonedCheckoutIds Method parameters: param name: abandonedCheckoutIds | type: array | description: Abandoned checkout GUIDs to be deleted. | required: true Return type: PROMISE - name: results | type: array | description: Results of the bulk delete operation. - name: itemMetadata | type: ItemMetadata | description: GUID of the abandoned checkout that was deleted. - name: _id | type: string | description: Item GUID. Provided only whenever possible. For example, `itemId` can't be provided when item creation has failed. - name: originalIndex | type: integer | description: Index of the item within the request array. Allows for correlation between request and response items. - name: success | type: boolean | description: Whether the requested action for this item was successful. When `false`, the `error` field is returned. - name: error | type: ApplicationError | description: Details about the error in case of failure. - name: code | type: string | description: Error code. - name: description | type: string | description: Description of the error. - name: data | type: object | description: Data related to the error. - name: bulkActionMetadata | type: BulkActionMetadata | description: Metadata about the bulk action. - name: totalSuccesses | type: integer | description: Number of items that were successfully processed. - name: totalFailures | type: integer | description: Number of items that couldn't be processed. - name: undetailedFailures | type: integer | description: Number of failures without details because detailed failure threshold was exceeded. ``` ### Examples ### bulkDeleteAbandonedCheckouts ```javascript import { abandonedCheckouts } from '@wix/ecom'; async function bulkDeleteAbandonedCheckouts(abandonedCheckoutIds) { const response = await abandonedCheckouts.bulkDeleteAbandonedCheckouts(abandonedCheckoutIds); }; ``` ### bulkDeleteAbandonedCheckouts (with elevated permissions) ```javascript import { abandonedCheckouts } from '@wix/ecom'; import { auth } from '@wix/essentials'; async function myBulkDeleteAbandonedCheckoutsMethod(abandonedCheckoutIds) { const elevatedBulkDeleteAbandonedCheckouts = auth.elevate(abandonedCheckouts.bulkDeleteAbandonedCheckouts); const response = await elevatedBulkDeleteAbandonedCheckouts(abandonedCheckoutIds); } ``` ### bulkDeleteAbandonedCheckouts (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 { abandonedCheckouts } from '@wix/ecom'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { abandonedCheckouts }, // Include the auth strategy and host as relevant }); async function bulkDeleteAbandonedCheckouts(abandonedCheckoutIds) { const response = await myWixClient.abandonedCheckouts.bulkDeleteAbandonedCheckouts(abandonedCheckoutIds); }; ``` ---