Re: How to change keyword status via the Python libraries

2018-09-03 Thread tom . wagstaff
Hi Milind, That's fixed it - works as expected now - thank you! Cheers, Tom On Friday, August 31, 2018 at 9:21:46 PM UTC+1, Milind Sankeshware (AdWords API Team) wrote: > > Hi Tom, > > To change the keyword status, you will need to set the UserStatus >

Re: How to change keyword status via the Python libraries

2018-08-31 Thread 'Milind Sankeshware (AdWords API Team)' via AdWords API and Google Ads API Forum
Hi Tom, To change the keyword status, you will need to set the UserStatus of your BiddableAdGroupCriterion

How to change keyword status via the Python libraries

2018-08-31 Thread tom . wagstaff
Hi community, I am struggling to work out how to change keyword status via the Google Ads API using the Python library. I have no problem pausing and enabling AdGroups, or adding new keywords, but there is no exact model for this in the sample code, and my alterations are not working as

Re: change keyword status on certain day and hours

2018-02-08 Thread 'Luis Xander Talag (AdWords API Team)' via AdWords API Forum
Hi Bhairavi, Updating the status of the keywords is supported in the AdWords API. You may check this sample code for reference. However, updating the status of the keywords with a scheduling feature

change keyword status on certain day and hours

2018-02-07 Thread Bhairavi
Hi, I am using api client library in PHP. I only want to change keyword status on certain days or hours ,is that possible from API? -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com

Re: change keyword status

2011-07-01 Thread Eric Koleda
Hi All, We wrote up a blog post on deleting a while back which should clear up any confusion: http://adwordsapi.blogspot.com/2010/06/different-ways-to-delete.html Best, - Eric Koleda, AdWords API Team -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion

Re: change keyword status

2011-06-29 Thread jstedman
I don't think this is what they intended you to use this field for... You cannot set the status of something to deleted if it is not actually deleted. If the deleted status value was handled like the paused status value your keyword would actually get deleted when you set that as its status just li

Re: change keyword status

2011-06-29 Thread kush
hi, In API just like paused status, there is deleted status. I'm trying to use it. But it throws an exception. But, when i use remove operator it permanently removes the keyword rather than just setting status to deleted. I need the keyword, but just want to set the status to deleted.Please help me

Re: change keyword status

2011-06-28 Thread mm
While "Deleted is a valid status, I don't believe that you can set the status of something to "Deleted", I think you actually have to delete it. After you do, it's status will be returned as "Deleted". On Jun 27, 4:22 pm, kush wrote: > Ya i tried the above method in php. But, it throws > "Invalid

Re: change keyword status

2011-06-27 Thread kush
Ya i tried the above method in php. But, it throws "Invalid_user_status" exception. But, it is a valid user status according to the API document. Please suggest if there is any alternative for this. On Jun 27, 3:12 pm, jstedman wrote: > If you are using the Java libraries, you may try setting it

Re: change keyword status

2011-06-27 Thread jstedman
If you are using the Java libraries, you may try setting it using the enum in the UserStatus class, something like: biddableAdGroupCriterion.setUserStatus(UserStatus.DELETED); If that doesn't work, setting a keywords status to deleted may not be supported as it could have unintended results, lik

change keyword status

2011-06-24 Thread kush
hi, i'm trying to change the keyword status to 'deleted' using adgroupcriterion service(userStatus field)(v201008) It throws an exception "Invalid_user_status". But, the same thing works when i set the status to 'Paused'. I know there is a chance to delete a keyword using 'remove' operator, but i d