Re: How to remove AdGroupFeed objects that reference a removed ad group

2015-02-20 Thread t . kieft
Seems to work, thanks!

On Wednesday, February 18, 2015 at 10:30:32 PM UTC+1, Josh Radcliff 
(AdWords API Team) wrote:

 Hi,

 I've got good news: you can now delete CampaignFeeds and AdGroupFeeds even 
 when their associated campaigns or ad groups have already been deleted. 
 Please give it a try and let me know if you encounter any issues.

 Thanks,
 Josh, AdWords API Team

 On Friday, January 23, 2015 at 4:24:49 PM UTC-5, Josh Radcliff (AdWords 
 API Team) wrote:

 Hi,

 I'm following up with the feeds team to see if there's a way to get 
 around this issue via the API. I'll post back when I hear back from them.

 In the meantime, you could try collecting all ENABLED AdGroup IDs via 
 AdGroupService or reports, and then split up your AdGroupFeedService 
 request into multiple requests, each one using an *IN* list on a subset 
 of the ENABLED IDs.

 Thanks,
 Josh, AdWords API Team

 On Friday, January 23, 2015 at 8:47:43 AM UTC-5, t.k...@social-mining.com 
 wrote:

 Hi,

 This is not working. I have some accounts that have a large number of 
 removed ad groups, while others have a large number of enabled ad groups. 
 When I try to filter AdGroupFeed objects based on the Ad Group IDs, either 
 way I get SelectorError.TOO_MANY_PREDICATE_VALUE.

 Unfortunately the AdGroupFeed's Status attribute is read only, otherwise 
 the problem could be largely avoided by simply removing AdGroupFeed objects 
 prior to removing the Ad Group they link to.

 On Thursday, January 15, 2015 at 11:08:06 PM UTC+1, Josh Radcliff 
 (AdWords API Team) wrote:

 Hi,

 Unfortunately, you cannot delete an *AdGroupFeed* via the API once its 
 associated *AdGroup* has been deleted. To filter out *AdGroupFeed*s 
 for your deleted *AdGroup*s, you could periodically poll AdGroupService 
 https://developers.google.com/adwords/api/docs/reference/v201409/AdGroupService
  
 (or use AD_GROUP_PERFORMANCE_REPORT 
 https://developers.google.com/adwords/api/docs/appendix/reports#ad-group)
  
 and collect the IDs of *REMOVED* ad groups, then exclude those IDs 
 using a predicate on *AdGroupId* when making your 
 *AdGroupFeedService.get* requests.

 Thanks,
 Josh, AdWords API Team

 On Thursday, January 15, 2015 at 8:23:39 AM UTC-5, 
 t.k...@social-mining.com wrote:

 I'm trying to remove some AdGroupFeed objects that reference Ad Groups 
 that where removed earlier. But the API is 
 returning: 
 OperationAccessDenied.OPERATION_NOT_PERMITTED_FOR_REMOVED_ENTITY. 
 According to the API documentation it is impossible to mutate AdGroupFeed 
 objects that reference removed entities. Is there any way to get rid of 
 the 
 objects? They are making querying the AdGroupFeedService extremely slow.



-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords 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 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/22ab22be-3657-45b7-b370-83c102f35492%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: How to remove AdGroupFeed objects that reference a removed ad group

2015-02-20 Thread t . kieft
Seems to work, thanks!

On Wednesday, February 18, 2015 at 10:30:32 PM UTC+1, Josh Radcliff 
(AdWords API Team) wrote:

 Hi,

 I've got good news: you can now delete CampaignFeeds and AdGroupFeeds even 
 when their associated campaigns or ad groups have already been deleted. 
 Please give it a try and let me know if you encounter any issues.

 Thanks,
 Josh, AdWords API Team

 On Friday, January 23, 2015 at 4:24:49 PM UTC-5, Josh Radcliff (AdWords 
 API Team) wrote:

 Hi,

 I'm following up with the feeds team to see if there's a way to get 
 around this issue via the API. I'll post back when I hear back from them.

 In the meantime, you could try collecting all ENABLED AdGroup IDs via 
 AdGroupService or reports, and then split up your AdGroupFeedService 
 request into multiple requests, each one using an *IN* list on a subset 
 of the ENABLED IDs.

 Thanks,
 Josh, AdWords API Team

 On Friday, January 23, 2015 at 8:47:43 AM UTC-5, t.k...@social-mining.com 
 wrote:

 Hi,

 This is not working. I have some accounts that have a large number of 
 removed ad groups, while others have a large number of enabled ad groups. 
 When I try to filter AdGroupFeed objects based on the Ad Group IDs, either 
 way I get SelectorError.TOO_MANY_PREDICATE_VALUE.

 Unfortunately the AdGroupFeed's Status attribute is read only, otherwise 
 the problem could be largely avoided by simply removing AdGroupFeed objects 
 prior to removing the Ad Group they link to.

 On Thursday, January 15, 2015 at 11:08:06 PM UTC+1, Josh Radcliff 
 (AdWords API Team) wrote:

 Hi,

 Unfortunately, you cannot delete an *AdGroupFeed* via the API once its 
 associated *AdGroup* has been deleted. To filter out *AdGroupFeed*s 
 for your deleted *AdGroup*s, you could periodically poll AdGroupService 
 https://developers.google.com/adwords/api/docs/reference/v201409/AdGroupService
  
 (or use AD_GROUP_PERFORMANCE_REPORT 
 https://developers.google.com/adwords/api/docs/appendix/reports#ad-group)
  
 and collect the IDs of *REMOVED* ad groups, then exclude those IDs 
 using a predicate on *AdGroupId* when making your 
 *AdGroupFeedService.get* requests.

 Thanks,
 Josh, AdWords API Team

 On Thursday, January 15, 2015 at 8:23:39 AM UTC-5, 
 t.k...@social-mining.com wrote:

 I'm trying to remove some AdGroupFeed objects that reference Ad Groups 
 that where removed earlier. But the API is 
 returning: 
 OperationAccessDenied.OPERATION_NOT_PERMITTED_FOR_REMOVED_ENTITY. 
 According to the API documentation it is impossible to mutate AdGroupFeed 
 objects that reference removed entities. Is there any way to get rid of 
 the 
 objects? They are making querying the AdGroupFeedService extremely slow.



-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords 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 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/00e1ef2c-3417-4edd-aeab-6bc3ea473071%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: How to remove AdGroupFeed objects that reference a removed ad group

2015-02-18 Thread Josh Radcliff (AdWords API Team)
Hi,

I've got good news: you can now delete CampaignFeeds and AdGroupFeeds even 
when their associated campaigns or ad groups have already been deleted. 
Please give it a try and let me know if you encounter any issues.

Thanks,
Josh, AdWords API Team

On Friday, January 23, 2015 at 4:24:49 PM UTC-5, Josh Radcliff (AdWords API 
Team) wrote:

 Hi,

 I'm following up with the feeds team to see if there's a way to get around 
 this issue via the API. I'll post back when I hear back from them.

 In the meantime, you could try collecting all ENABLED AdGroup IDs via 
 AdGroupService or reports, and then split up your AdGroupFeedService 
 request into multiple requests, each one using an *IN* list on a subset 
 of the ENABLED IDs.

 Thanks,
 Josh, AdWords API Team

 On Friday, January 23, 2015 at 8:47:43 AM UTC-5, t.k...@social-mining.com 
 wrote:

 Hi,

 This is not working. I have some accounts that have a large number of 
 removed ad groups, while others have a large number of enabled ad groups. 
 When I try to filter AdGroupFeed objects based on the Ad Group IDs, either 
 way I get SelectorError.TOO_MANY_PREDICATE_VALUE.

 Unfortunately the AdGroupFeed's Status attribute is read only, otherwise 
 the problem could be largely avoided by simply removing AdGroupFeed objects 
 prior to removing the Ad Group they link to.

 On Thursday, January 15, 2015 at 11:08:06 PM UTC+1, Josh Radcliff 
 (AdWords API Team) wrote:

 Hi,

 Unfortunately, you cannot delete an *AdGroupFeed* via the API once its 
 associated *AdGroup* has been deleted. To filter out *AdGroupFeed*s for 
 your deleted *AdGroup*s, you could periodically poll AdGroupService 
 https://developers.google.com/adwords/api/docs/reference/v201409/AdGroupService
  
 (or use AD_GROUP_PERFORMANCE_REPORT 
 https://developers.google.com/adwords/api/docs/appendix/reports#ad-group) 
 and collect the IDs of *REMOVED* ad groups, then exclude those IDs 
 using a predicate on *AdGroupId* when making your 
 *AdGroupFeedService.get* requests.

 Thanks,
 Josh, AdWords API Team

 On Thursday, January 15, 2015 at 8:23:39 AM UTC-5, 
 t.k...@social-mining.com wrote:

 I'm trying to remove some AdGroupFeed objects that reference Ad Groups 
 that where removed earlier. But the API is 
 returning: 
 OperationAccessDenied.OPERATION_NOT_PERMITTED_FOR_REMOVED_ENTITY. 
 According to the API documentation it is impossible to mutate AdGroupFeed 
 objects that reference removed entities. Is there any way to get rid of 
 the 
 objects? They are making querying the AdGroupFeedService extremely slow.



-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords 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 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/947f95b9-ed20-4cc7-9daf-5dce9bcf1b69%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: How to remove AdGroupFeed objects that reference a removed ad group

2015-01-23 Thread Josh Radcliff (AdWords API Team)
Hi,

I'm following up with the feeds team to see if there's a way to get around 
this issue via the API. I'll post back when I hear back from them.

In the meantime, you could try collecting all ENABLED AdGroup IDs via 
AdGroupService or reports, and then split up your AdGroupFeedService 
request into multiple requests, each one using an *IN* list on a subset of 
the ENABLED IDs.

Thanks,
Josh, AdWords API Team

On Friday, January 23, 2015 at 8:47:43 AM UTC-5, t.k...@social-mining.com 
wrote:

 Hi,

 This is not working. I have some accounts that have a large number of 
 removed ad groups, while others have a large number of enabled ad groups. 
 When I try to filter AdGroupFeed objects based on the Ad Group IDs, either 
 way I get SelectorError.TOO_MANY_PREDICATE_VALUE.

 Unfortunately the AdGroupFeed's Status attribute is read only, otherwise 
 the problem could be largely avoided by simply removing AdGroupFeed objects 
 prior to removing the Ad Group they link to.

 On Thursday, January 15, 2015 at 11:08:06 PM UTC+1, Josh Radcliff (AdWords 
 API Team) wrote:

 Hi,

 Unfortunately, you cannot delete an *AdGroupFeed* via the API once its 
 associated *AdGroup* has been deleted. To filter out *AdGroupFeed*s for 
 your deleted *AdGroup*s, you could periodically poll AdGroupService 
 https://developers.google.com/adwords/api/docs/reference/v201409/AdGroupService
  
 (or use AD_GROUP_PERFORMANCE_REPORT 
 https://developers.google.com/adwords/api/docs/appendix/reports#ad-group) 
 and collect the IDs of *REMOVED* ad groups, then exclude those IDs using 
 a predicate on *AdGroupId* when making your *AdGroupFeedService.get* 
 requests.

 Thanks,
 Josh, AdWords API Team

 On Thursday, January 15, 2015 at 8:23:39 AM UTC-5, 
 t.k...@social-mining.com wrote:

 I'm trying to remove some AdGroupFeed objects that reference Ad Groups 
 that where removed earlier. But the API is 
 returning: 
 OperationAccessDenied.OPERATION_NOT_PERMITTED_FOR_REMOVED_ENTITY. 
 According to the API documentation it is impossible to mutate AdGroupFeed 
 objects that reference removed entities. Is there any way to get rid of the 
 objects? They are making querying the AdGroupFeedService extremely slow.



-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords 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 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/5d217408-02ad-4ded-ac79-8304329ff4d9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: How to remove AdGroupFeed objects that reference a removed ad group

2015-01-23 Thread t . kieft
Hi,

This is not working. I have some accounts that have a large number of 
removed ad groups, while others have a large number of enabled ad groups. 
When I try to filter AdGroupFeed objects based on the Ad Group IDs, either 
way I get SelectorError.TOO_MANY_PREDICATE_VALUE.

Unfortunately the AdGroupFeed's Status attribute is read only, otherwise 
the problem could be largely avoided by simply removing AdGroupFeed objects 
prior to removing the Ad Group they link to.

On Thursday, January 15, 2015 at 11:08:06 PM UTC+1, Josh Radcliff (AdWords 
API Team) wrote:

 Hi,

 Unfortunately, you cannot delete an *AdGroupFeed* via the API once its 
 associated *AdGroup* has been deleted. To filter out *AdGroupFeed*s for 
 your deleted *AdGroup*s, you could periodically poll AdGroupService 
 https://developers.google.com/adwords/api/docs/reference/v201409/AdGroupService
  
 (or use AD_GROUP_PERFORMANCE_REPORT 
 https://developers.google.com/adwords/api/docs/appendix/reports#ad-group) 
 and collect the IDs of *REMOVED* ad groups, then exclude those IDs using 
 a predicate on *AdGroupId* when making your *AdGroupFeedService.get* 
 requests.

 Thanks,
 Josh, AdWords API Team

 On Thursday, January 15, 2015 at 8:23:39 AM UTC-5, 
 t.k...@social-mining.com wrote:

 I'm trying to remove some AdGroupFeed objects that reference Ad Groups 
 that where removed earlier. But the API is 
 returning: OperationAccessDenied.OPERATION_NOT_PERMITTED_FOR_REMOVED_ENTITY. 
 According to the API documentation it is impossible to mutate AdGroupFeed 
 objects that reference removed entities. Is there any way to get rid of the 
 objects? They are making querying the AdGroupFeedService extremely slow.



-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords 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 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/3bd72e94-e059-4fb4-b1ad-4140feecaa59%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: How to remove AdGroupFeed objects that reference a removed ad group

2015-01-15 Thread Josh Radcliff (AdWords API Team)
Hi,

Unfortunately, you cannot delete an *AdGroupFeed* via the API once its 
associated *AdGroup* has been deleted. To filter out *AdGroupFeed*s for 
your deleted *AdGroup*s, you could periodically poll AdGroupService 
https://developers.google.com/adwords/api/docs/reference/v201409/AdGroupService
 
(or use AD_GROUP_PERFORMANCE_REPORT 
https://developers.google.com/adwords/api/docs/appendix/reports#ad-group) 
and collect the IDs of *REMOVED* ad groups, then exclude those IDs using a 
predicate on *AdGroupId* when making your *AdGroupFeedService.get* requests.

Thanks,
Josh, AdWords API Team

On Thursday, January 15, 2015 at 8:23:39 AM UTC-5, t.k...@social-mining.com 
wrote:

 I'm trying to remove some AdGroupFeed objects that reference Ad Groups 
 that where removed earlier. But the API is 
 returning: OperationAccessDenied.OPERATION_NOT_PERMITTED_FOR_REMOVED_ENTITY. 
 According to the API documentation it is impossible to mutate AdGroupFeed 
 objects that reference removed entities. Is there any way to get rid of the 
 objects? They are making querying the AdGroupFeedService extremely slow.


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords 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 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/a74e8d1d-9615-4096-9514-cf084531ec17%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


How to remove AdGroupFeed objects that reference a removed ad group

2015-01-15 Thread t . kieft
I'm trying to remove some AdGroupFeed objects that reference Ad Groups that 
where removed earlier. But the API is 
returning: OperationAccessDenied.OPERATION_NOT_PERMITTED_FOR_REMOVED_ENTITY. 
According to the API documentation it is impossible to mutate AdGroupFeed 
objects that reference removed entities. Is there any way to get rid of the 
objects? They are making querying the AdGroupFeedService extremely slow.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords 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 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/86c60711-1adb-4fcb-bc02-246f14b1503d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.