> 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 # AppendAdsTxt # Package: txtFileServer # Namespace: AdsServiceV2 # Method link: https://dev.wix.com/docs/api-reference/business-management/marketing/seo/txt-file-server/ads-txt/append-ads-txt.md ## Permission Scopes: Manage Ads.txt: SCOPE.DC-PROMOTE.MANAGE-ADS-TXT ## Introduction Appends the submitted `content` object to Ads.txt. In order to reset Ads.txt to Wix's default, send `default: true` without a `content` object. --- ## REST API ### Schema ``` Method: appendAdsTxt Description: Appends the submitted `content` object to Ads.txt. 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: PATCH 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: AppendAdsTxtResponse - name: adsTxt | type: AdsTxt | description: Appended Ads.txt file. - 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 ### Append Ads.txt Example ```curl curl PATCH 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-0000000000000001, DIRECT, f08c47fec0942fa0", "subdomain": "www"}}' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.txtFileServer.AdsServiceV2.appendAdsTxt(options) Description: Appends the submitted `content` object to Ads.txt. In order to reset Ads.txt to Wix's default, send `default: true` without a `content` object. Method parameters: param name: options | type: AppendAdsTxtOptions none - name: adsTxt | type: AdsTxt | description: Submitted `content` object will be appended to 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: Appended Ads.txt file. - 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 ### appendAdsTxt ```javascript import { adsTxt } from '@wix/marketing'; async function appendAdsTxt(options) { const response = await adsTxt.appendAdsTxt(options); }; ``` ### appendAdsTxt (with elevated permissions) ```javascript import { adsTxt } from '@wix/marketing'; import { auth } from '@wix/essentials'; async function myAppendAdsTxtMethod(options) { const elevatedAppendAdsTxt = auth.elevate(adsTxt.appendAdsTxt); const response = await elevatedAppendAdsTxt(options); } ``` ### appendAdsTxt (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 appendAdsTxt(options) { const response = await myWixClient.adsTxt.appendAdsTxt(options); }; ``` ---