> 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 # DeleteMarketingConsent # Package: marketing # Namespace: MarketingConsentService # Method link: https://dev.wix.com/docs/api-reference/business-management/marketing/marketing-consent/delete-marketing-consent.md ## Permission Scopes: Manage Marketing Consents: SCOPE.DC-MARKETING.CONSENT-MANAGE ## Introduction Deletes a marketing consent. --- ## REST API ### Schema ``` Method: deleteMarketingConsent Description: Deletes a marketing consent. URL: https://www.wixapis.com/v1/marketing-consent/{marketingConsentId} Method: DELETE # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: marketingConsentId Method parameters: param name: marketingConsentId | type: none | required: true Return type: DeleteMarketingConsentResponse EMPTY-OBJECT {} ``` ### Examples ### Delete Marketing Consent ```curl curl -X DELETE \ 'https://www.wixapis.com/marketing-consent/v1/marketing-consent/2178v046df3c-7575-4098-a5ab-c91ad8f33c47' \ -H 'Authorization: ' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.marketing.MarketingConsentService.deleteMarketingConsent(marketingConsentId) Description: Deletes a marketing consent. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: marketingConsentId Method parameters: param name: marketingConsentId | type: string | description: GUID of the marketing consent to delete. | required: true Return type: PROMISE EMPTY-OBJECT {} ``` ### Examples ### deleteMarketingConsent ```javascript import { marketingConsent } from '@wix/marketing'; async function deleteMarketingConsent(marketingConsentId) { const response = await marketingConsent.deleteMarketingConsent(marketingConsentId); }; ``` ### deleteMarketingConsent (with elevated permissions) ```javascript import { marketingConsent } from '@wix/marketing'; import { auth } from '@wix/essentials'; async function myDeleteMarketingConsentMethod(marketingConsentId) { const elevatedDeleteMarketingConsent = auth.elevate(marketingConsent.deleteMarketingConsent); const response = await elevatedDeleteMarketingConsent(marketingConsentId); } ``` ### deleteMarketingConsent (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 { marketingConsent } from '@wix/marketing'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { marketingConsent }, // Include the auth strategy and host as relevant }); async function deleteMarketingConsent(marketingConsentId) { const response = await myWixClient.marketingConsent.deleteMarketingConsent(marketingConsentId); }; ``` ---