账户名和账户ID作用

在google ads script很多的使用场景中,了解当前账户名和账户ID至关重要:

  1. 账户识别:获取账户名和客户ID可以帮助您明确当前操作的是哪个广告账户。这对于管理多个广告账户的用户而言尤为重要。你可以根据账户名和客户ID来确认您正在更新或优化正确的账户信息。
  2. 自动化报告:使用脚本获取账户名和客户ID后,您可以编写脚本生成自定义报告。这些报告可以包括账户的性能指标、转化数据等信息。你可以定期自动生成这些报告,并将它们发送给关键利益相关者,帮助他们了解账户的绩效和趋势。

代码介绍

先定义函数,所有功能都需要在函数内执行

function single_account(){
//此处填入内容
}

使用Google Ads scripts API的根对象adsapp,调用内部方法currentAccount()来获取当前账户数据

调用getName()方法获取并打印当前账户名

let accountname = AdsApp.currentAccount().getName() 
Logger.log(accountname)

使用预览功能执行函数就能看到账户名

同理,调用getCustomerId()方法获取并打印当前账户的客户ID

let customerid = AdsApp.currentAccount().getCustomerId()
Logger.log(customerid)

打印账户名和客户ID的完整代码(放入代码区内执行):

funtion single_account(){
let accountname = AdsApp.currentAccount().getName() 
let customerid = AdsApp.currentAccount().getCustomerId()
Logger.log(accountname)
Logger.log(customerid)
}

视频教程

此作者没有提供个人介绍
最后更新于 2024-12-10