Learn R Programming

googleAnalyticsR (version 1.2.0)

ga_adwords_delete_linkid: Deletes a Google Analytics webProperty-Google Ads link

Description

Removes a link between and Adwords (Google ads) account and a Google Analytics property

Usage

ga_adwords_delete_linkid(accountId, webPropertyId, webPropertyAdWordsLinkId)

Value

HTTP Status Code 204 with empty response body, if successful

Arguments

accountId

Account Id

webPropertyId

Web Property Id

webPropertyAdWordsLinkId

webPropertyAdWordsLinkId

See Also

Google documentation

Other Google Ad management functions: ga_adwords(), ga_adwords_add_linkid(), ga_adwords_list()

Examples

Run this code

if (FALSE) {

library(googleAnalyticsR)
ga_auth()

# get the ID of the Adwords- Google Analytics link that you want to delete 
# ID corresponding to the webPropertyAdWordsLinkId field
ga_adwords_list(65973592, "UA-65973592-1") 
 
ga_adwords_delete_linkid(65973592, "UA-65973592-1", "ezW2dyaiQcGheWRAo69nCw")


# check its gone
ga_adwords_list(65973592, "UA-65973592-1")
}

Run the code above in your browser using DataLab