Good afternoon, I tried a lot to extract the data from ADS with the following columns: cost CPC Average CPC name campaign Final URL with suffix
This was the code I came closest to, but if you have one that already works, could you provide it to me? function main() { try { var SPREADSHEET_URL = "https://docs.google.com/spreadsheets/d/1ZSZ7AON8b8mBvXijQQmZyDnT_BqeORGcxuFelN6R-Os/edit#gid=842806610" ; var SHEET_NAME = "ADS"; var dataInicial = "2023-10-01"; var dataFinal = "2023-12-31"; var spreadsheet = SpreadsheetApp.openByUrl(SPREADSHEET_URL); var sheet = spreadsheet.getSheetByName(SHEET_NAME); sheet.clear(); var CAMPOS = ["Data", "Nome da Campanha", "Cliques", "Impressões", "CTR", "Custo"]; sheet.appendRow(CAMPOS); var report = AdsApp.report( "SELECT Date, CampaignName, Clicks, Impressions, Ctr, Cost " + "FROM CAMPAIGN_PERFORMANCE_REPORT " + "WHERE Date >= '" + dataInicial + "' AND Date <= '" + dataFinal + "'" ); var rows = report.rows(); while (rows.hasNext()) { var row = rows.next(); var rowData = [ row['Date'], row['CampaignName'], row['Clicks'], row['Impressions'], row['Ctr'], row['Cost'] ]; sheet.appendRow(rowData); } } catch (error) { console.error("Erro no script:", error.message); } } -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.com/ =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message because you are subscribed to the Google Groups "AdWords API and Google Ads API Forum" group. To post to this group, send email to adwords-api@googlegroups.com To unsubscribe from this group, send email to adwords-api+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/adwords-api?hl=en --- You received this message because you are subscribed to the Google Groups "Google Ads API and AdWords API Forum" group. To unsubscribe from this group and stop receiving emails from it, send an email to adwords-api+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/adwords-api/9e5c6d0f-9ccc-46fa-9d5a-779b2cfb34aen%40googlegroups.com.