> 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 # UpdateAdsTxt # Package: txtFileServer # Namespace: AdsServiceV2 # Method link: https://dev.wix.com/docs/api-reference/business-management/marketing/seo/txt-file-server/ads-txt/update-ads-txt.md ## Permission Scopes: Manage Ads.txt: SCOPE.DC-PROMOTE.MANAGE-ADS-TXT ## Introduction Updates the Ads.txt file. When setting the `content` object to an empty string, an empty Ads.txt file will be created. In order to reset Ads.txt to Wix's default, send `default: true` without a `content` object. --- ## REST API ### Schema ``` Method: updateAdsTxt Description: Updates the Ads.txt file. When setting the `content` object to an empty string, an empty Ads.txt file will be created. In order to reset Ads.txt to Wix's default, send `default: true` without a `content` object. URL: https://www.wixapis.com/promote-seo-robots-server/v2/ads Method: PUT Method parameters: param name: adsTxt | type: AdsTxt - name: content | type: string | description: Content of Ads.txt. - name: default | type: boolean | description: Whether current Ads.txt is Wix's default. - name: subdomain | type: string | description: Subdomain of Ads.txt, for example `www`, `es`, `fr`. Default is `www`. Return type: UpdateAdsTxtResponse - name: adsTxt | type: AdsTxt | description: Updated Ads txt object - name: content | type: string | description: Content of Ads.txt. - name: default | type: boolean | description: Whether current Ads.txt is Wix's default. - name: subdomain | type: string | description: Subdomain of Ads.txt, for example `www`, `es`, `fr`. Default is `www`. Possible Errors: HTTP Code: 428 | Status Code: FAILED_PRECONDITION | Application Code: | Description: Site GUID is missing. ``` ### Examples ### Update Ads.txt Example ```curl curl PUT https://www.wixapis.com/promote-seo-txt-file-server/v2/ads \ -H 'Content-Type: application/json;charset=UTF-8' \ -H 'Authorization: ' \ -d '{"adsTxt": {"content": "google.com, pub-0000000000000000, DIRECT, f08c47fec0942fa0", "subdomain": "www"}}' ``` ### Reset Ads.txt to default Example You can pass `default: true` in case you need to reset to default ```curl curl PUT https://www.wixapis.com/promote-seo-txt-file-server/v2/ads \ -H 'Content-Type: application/json;charset=UTF-8' \ -H 'Authorization: ' \ -d '{"adsTxt": {"default": true, "subdomain": "www"}}' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.txtFileServer.AdsServiceV2.updateAdsTxt(options) Description: Updates the Ads.txt file. When setting the `content` object to an empty string, an empty Ads.txt file will be created. In order to reset Ads.txt to Wix's default, send `default: true` without a `content` object. Method parameters: param name: options | type: UpdateAdsTxtOptions none - name: adsTxt | type: AdsTxt | description: Submitted `adsTxT` object will replace the existing Ads.txt file. To reset Ads.txt to Wix's default, submit `default:true` without a `content` object. - name: content | type: string | description: Content of Ads.txt. - name: default | type: boolean | description: Whether current Ads.txt is Wix's default. - name: subdomain | type: string | description: Subdomain of Ads.txt, for example `www`, `es`, `fr`. Default is `www`. Return type: PROMISE - name: adsTxt | type: AdsTxt | description: Updated Ads txt object - name: content | type: string | description: Content of Ads.txt. - name: default | type: boolean | description: Whether current Ads.txt is Wix's default. - name: subdomain | type: string | description: Subdomain of Ads.txt, for example `www`, `es`, `fr`. Default is `www`. Possible Errors: HTTP Code: 428 | Status Code: FAILED_PRECONDITION | Application Code: | Description: Site GUID is missing. ``` ### Examples ### updateAdsTxt ```javascript import { adsTxt } from '@wix/marketing'; async function updateAdsTxt(options) { const response = await adsTxt.updateAdsTxt(options); }; ``` ### updateAdsTxt (with elevated permissions) ```javascript import { adsTxt } from '@wix/marketing'; import { auth } from '@wix/essentials'; async function myUpdateAdsTxtMethod(options) { const elevatedUpdateAdsTxt = auth.elevate(adsTxt.updateAdsTxt); const response = await elevatedUpdateAdsTxt(options); } ``` ### updateAdsTxt (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 { adsTxt } from '@wix/marketing'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { adsTxt }, // Include the auth strategy and host as relevant }); async function updateAdsTxt(options) { const response = await myWixClient.adsTxt.updateAdsTxt(options); }; ``` ---