Re: Adding labels on keywords

2019-01-11 Thread 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API and Google Ads API Forum
Hello, You will first need to use the LabelService to create the label with the specific text. In your case with the date when you updated the max CPC as the text. Once that is done, you can use the mutateLabels(

Re: Adding labels on keywords

2019-01-10 Thread bruno . yano
Hi Shwetha, How can I create label in API? Because I need to create a label with a date that I updated the CPCmax. Regards Em quinta-feira, 16 de junho de 2016 13:25:35 UTC-3, Shwetha Vastrad (AdWords API Team) escreveu: > > Hi, > > To add labels to your keywords, you would need to create > Ad

Re: Adding labels on keywords

2018-11-01 Thread sam
Thank you Sreelakshmi, this helps a lot! On Thursday, November 1, 2018 at 8:40:58 AM UTC-7, Sreelakshmi Sasidharan (AdWords API Team) wrote: > > Hello, > > From the code snippet it is not clear if you are performing the > AdGroupCriterionService.mutateLabel() >

Re: Adding labels on keywords

2018-11-01 Thread 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API and Google Ads API Forum
Hello, >From the code snippet it is not clear if you are performing the AdGroupCriterionService.mutateLabel() operation. Please take a look at the attached code snippet (in Java) to get an i

Re: Adding labels on keywords

2018-10-31 Thread sam
Hi Vincent, We are using LabelService to mutate the label operation and not using BatchJobService. Another issue that seems to be happening, is the label being added to all keywords rather than the one specified by "keyword_id". Is there anywhere we could find sample code for adding a keyword l

Re: Adding labels on keywords

2018-10-31 Thread 'Vincent Racaza (AdWords API Team)' via AdWords API and Google Ads API Forum
Hi Sam, Can you confirm if you are using BatchJobService to add labels to your keywords? Please note that LabelOperation

Re: Adding labels on keywords

2018-10-30 Thread sam
$label_id = TempIdGenerator::Generate(); $keyword_label = new TextLabel(); $keyword_label->setId($label_id); $keyword_label->setName($label_text); $keyword_label->setAttribute('test'); $label_operation = new LabelOperation(); // Label operation should not be included in the BatchJobService $labe

Re: Adding labels on keywords

2018-10-30 Thread 'Vincent Racaza (AdWords API Team)' via AdWords API and Google Ads API Forum
Hi, Before you can associate the label to your ad group via AdGroupCriterionService , you need to create a label fir

Re: Adding labels on keywords

2018-10-30 Thread sam
Hi Shwetha, We are trying to do the same, but how do we set the label text for AdGroupCriterionLabel? I don't see a set function for label text. Thanks! On Thursday, June 16, 2016 at 9:25:35 AM UTC-7, Shwetha Vastrad (AdWords API Team) wrote: > > Hi, > > To add labels to your keywords, you wou

Re: Adding labels on keywords

2016-06-16 Thread 'Shwetha Vastrad (AdWords API Team)' via AdWords API Forum
Hi, To add labels to your keywords, you would need to create AdGroupCriterionLabel which contains: - labelId - ID of the label. - adGroupId - ID of the AdGroup containing the

Adding labels on keywords

2016-06-16 Thread giorgioo
Hello all, today I was creating labels for my Adwords account using API while I just found one topic talking about how to add Labels ( https://developers.google.com/adwords/api/docs/guides/labels#create_your_labels) and I got no problems on following the guide. By the way I want to try to assi