> 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 # DeleteSeoUserConfig # Package: seo # Namespace: SeoUserConfigService # Method link: https://dev.wix.com/docs/api-reference/business-management/marketing/seo/seo-user-config/delete-seo-user-config.md ## Introduction Deletes the SEO configuration for the current site. --- ## REST API ### Schema ``` Method: deleteSeoUserConfig Description: Deletes the SEO configuration for the current site. URL: https://www.wixapis.com/v1/seo-user-config Method: DELETE Return type: DeleteSeoUserConfigResponse EMPTY-OBJECT {} ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.seo.SeoUserConfigService.deleteSeoUserConfig() Description: Deletes the SEO configuration for the current site. Return type: PROMISE EMPTY-OBJECT {} ``` ### Examples ### deleteSeoUserConfig ```javascript import { seoUserConfig } from '@wix/seo-user-config'; async function deleteSeoUserConfig() { const response = await seoUserConfig.deleteSeoUserConfig(); }; ``` ### deleteSeoUserConfig (with elevated permissions) ```javascript import { seoUserConfig } from '@wix/seo-user-config'; import { auth } from '@wix/essentials'; async function myDeleteSeoUserConfigMethod() { const elevatedDeleteSeoUserConfig = auth.elevate(seoUserConfig.deleteSeoUserConfig); const response = await elevatedDeleteSeoUserConfig(); } ``` ### deleteSeoUserConfig (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 { seoUserConfig } from '@wix/seo-user-config'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { seoUserConfig }, // Include the auth strategy and host as relevant }); async function deleteSeoUserConfig() { const response = await myWixClient.seoUserConfig.deleteSeoUserConfig(); }; ``` ---