I use the "Bulk Upload" which is explained in the article below. (https://developers.google.com/google-ads/scripts/docs/features/bulk-upload)
And also, I check "Bulk Upload Temple" (https://www.gstatic.com/adwords/campaignmgmt/templates/campaign_mcc_template.xlsx) But there is no sample to designate Connected TV at "Row Type:Device" in Bulk Upload. (If I want to specify MOBILE/TABLET/DESKTOP at "Row Type:Device", this code will work. But there is no way to designate Connected TV at "Row Type:Device") ``` const columns = [ "Campaign", "Budget", "Bid Strategy type", "Campaign type", "Devices" ]; const upload = AdsApp.bulkUploads().newCsvUpload(columns); upload.append({ "Campaign": "Test Campaign 1", "Budget": 2.34, "Bid Strategy type": "cpc", "Campaign type": "Search Only", "Devices": "Computers:+10%; Mobile devices with full browsers:-5%; Tablets with full browsers:+15%.", }); upload.forCampaignManagement(); upload.preview(); ``` Is there any way to designate Connected TV at "Row Type:Device" in Bulk Upload?? Thanks for any advice. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ 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 [email protected] To unsubscribe from this group, send email to [email protected] 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 [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/adwords-api/73fb4a82-c351-4f07-9a12-1d929add8802n%40googlegroups.com.
