Re: How to clear array sub property "conversion_actions"

2019-12-18 Thread Sergiy Kovalchuk
Hello, Thank you, it worked. Here is the corresponding python version if anyone is interested: GA_CLIENT = GoogleAdsClient.load_from_storage('/path/') api_service = GA_CLIENT.get_service('CampaignService', version='v2') operation = GA_CLIENT.get_type('CampaignOperation', version='v2')

RE: How to clear array sub property "conversion_actions"

2019-12-18 Thread Google Ads API Forum Advisor Prod
Hi Sergiy, Thank you for your patience. I was trying to remove the selective optimization field for the campaigns within my account and was successfully able to achieve that using mutate method of CampaignService via API. Please find below the code snippet used (in Java) to achieve this via

RE: How to clear array sub property "conversion_actions"

2019-12-17 Thread Google Ads API Forum Advisor Prod
Hi Serigy, Thank you for reaching out. We are still looking into this and will get back to you shortly. Regards, Nikisha Patel, Google Ads API Team ref:_00D1U1174p._5001UOEfuS:ref -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog:

How to clear array sub property "conversion_actions"

2019-12-16 Thread Sergiy Kovalchuk
Hello, I have a campaign with the following properties: "selectiveOptimization": { "conversionActions": [ "customers/xxx/conversionActions/yyy" ] } I am trying to clear the "conversionActions" list so it is either empty or completely absent from the properties, but not sure