> 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 # DeleteSupplier # Package: suppliersHub # Namespace: MarketplaceSupplier # Method link: https://dev.wix.com/docs/api-reference/business-solutions/suppliers-hub/suppliers/delete-supplier.md ## Permission Scopes: Write Marketplace: SCOPE.SUPPLIERS_HUB.WRITE_MARKETPLACE ## Introduction Permanently deletes a supplier from the marketplace. This action cannot be undone. Use this endpoint when removing suppliers that are no longer active in your network. --- ## REST API ### Schema ``` Method: deleteSupplier Description: Permanently deletes a supplier from the marketplace. This action cannot be undone. Use this endpoint when removing suppliers that are no longer active in your network. URL: https://www.wixapis.com/suppliers-hub/v1/suppliers/{supplierId} Method: DELETE # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: supplierId Method parameters: param name: supplierId | type: none | required: true Return type: DeleteSupplierResponse EMPTY-OBJECT {} ``` ### Examples ### Delete a supplier Permanently removes a supplier from the marketplace ```curl curl -X DELETE \ 'https://www.wixapis.com/suppliers-hub/v1/suppliers/12345678-1234-1234-1234-123456789012' \ -H 'Authorization: ' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.suppliersHub.MarketplaceSupplier.deleteSupplier(supplierId) Description: Permanently deletes a supplier from the marketplace. This action cannot be undone. Use this endpoint when removing suppliers that are no longer active in your network. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: supplierId Method parameters: param name: supplierId | type: string | description: Id of the Supplier to delete. | required: true Return type: PROMISE EMPTY-OBJECT {} ``` ### Examples ### deleteSupplier ```javascript import { suppliers } from '@wix/suppliers-hub'; async function deleteSupplier(supplierId) { const response = await suppliers.deleteSupplier(supplierId); }; ``` ### deleteSupplier (with elevated permissions) ```javascript import { suppliers } from '@wix/suppliers-hub'; import { auth } from '@wix/essentials'; async function myDeleteSupplierMethod(supplierId) { const elevatedDeleteSupplier = auth.elevate(suppliers.deleteSupplier); const response = await elevatedDeleteSupplier(supplierId); } ``` ### deleteSupplier (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 { suppliers } from '@wix/suppliers-hub'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { suppliers }, // Include the auth strategy and host as relevant }); async function deleteSupplier(supplierId) { const response = await myWixClient.suppliers.deleteSupplier(supplierId); }; ``` ---