How can I get values for 'Networks' column in 'All Campaigns' > 'Settings' > 'Campaign Settings' page?

2019-03-07 Thread 김미소
I wonder which fields of Campaign object define a column named 'Networks' 
in 'All Campaigns' > 'Settings' > 'Campaign Settings' page.

I guessed the fields of NetworkSetting object were match with that column, 
but I couldn't find like 'YouTube videos'.

Is the value 'YouTube videos' in 'Networks' column mapped other fields or 
values?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/36d08525-8185-4162-8f16-688c36a879a1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Finding out the given feed_id belongs to which Client_Customer_ID

2019-03-07 Thread shweta . sontakke . tc
Hi There,

So, the process goes like this. Once the feed is created into Adwords, I 
store the feed Id and Feed_item_Id into my database. And, I can see that a 
particular feed has got generated and the feed_id and feed_item_id 
generated is tored into my database. But I am not able to find the feed in 
Adwords. Even if the feed is deleted from Adwords, I will still get that 
feed_id with status as 'Removed' using the selector right?

Attached is my class for finding out the feeds in Adwords. Let me know if 
there is any way to find this feed or anyne of you can find this feed for 
me.

Thanks in Advance.

On Thursday, 7 March 2019 14:00:21 UTC+5:30, shweta.so...@gmail.com wrote:
>
> I have a Feed_Id and I need to find out this id belongs to which 
> Client_Customer_ID in Adwords using the Adwords API.
>
> Please let me know is there any selector using which we can achieve this.
>
> Regards,
> Shweta Padwekar
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/ee084e5f-c573-45af-9721-f68a0197d4c0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
package adwords.axis.v201809.advancedoperations;

import static com.google.api.ads.common.lib.utils.Builder.DEFAULT_CONFIGURATION_FILENAME;

import java.rmi.RemoteException;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;

import com.google.api.ads.adwords.axis.factory.AdWordsServices;
import com.google.api.ads.adwords.axis.utils.v201809.SelectorBuilder;
import com.google.api.ads.adwords.axis.v201809.cm.AdCustomizerFeed;
import com.google.api.ads.adwords.axis.v201809.cm.AdCustomizerFeedPage;
import com.google.api.ads.adwords.axis.v201809.cm.AdCustomizerFeedServiceInterface;
import com.google.api.ads.adwords.axis.v201809.mcm.ManagedCustomer;
import com.google.api.ads.adwords.axis.v201809.mcm.ManagedCustomerLink;
import com.google.api.ads.adwords.axis.v201809.mcm.ManagedCustomerPage;
import com.google.api.ads.adwords.axis.v201809.mcm.ManagedCustomerServiceInterface;
import com.google.api.ads.adwords.lib.client.AdWordsSession;
import com.google.api.ads.adwords.lib.factory.AdWordsServicesInterface;
import com.google.api.ads.adwords.lib.selectorfields.v201802.cm.ManagedCustomerField;
import com.google.api.ads.adwords.lib.selectorfields.v201809.cm.AdCustomizerFeedField;
import com.google.api.ads.common.lib.auth.OfflineCredentials;
import com.google.api.ads.common.lib.auth.OfflineCredentials.Api;
import com.google.api.ads.common.lib.conf.ConfigurationLoadException;
import com.google.api.ads.common.lib.exception.OAuthException;
import com.google.api.ads.common.lib.exception.ValidationException;
import com.google.api.client.auth.oauth2.Credential;
import com.google.common.collect.Maps;
import com.google.common.collect.SortedSetMultimap;
import com.google.common.collect.TreeMultimap;

public class GetAllFeedsInClientCustomerID {

	public static void main(String[] args) throws ValidationException, ConfigurationLoadException, RemoteException {
		AdWordsSession session = null;
		Credential oAuth2Credential = null;
		try {
			// Generate a refreshable OAuth2 credential.
			oAuth2Credential = new OfflineCredentials.Builder().forApi(Api.ADWORDS).fromFile().build()
	.generateCredential();

			// Construct an AdWordsSession.
			session = new AdWordsSession.Builder().fromFile().withOAuth2Credential(oAuth2Credential).build();
		} catch (ConfigurationLoadException cle) {
			System.err.printf("Failed to load configuration from the %s file. Exception: %s%n",
	DEFAULT_CONFIGURATION_FILENAME, cle);
		} catch (ValidationException ve) {
			System.err.printf("Invalid configuration in the %s file. Exception: %s%n", DEFAULT_CONFIGURATION_FILENAME,
	ve);
		} catch (OAuthException oe) {
			System.err.printf(
	"Failed to create OAuth credentials. Check OAuth settings in the %s file. " + "Exception: %s%n",
	DEFAULT_CONFIGURATION_FILENAME, oe);
		}

		AdWordsServicesInterface adWordsServices = AdWordsServices.getInstance();
		List clientCustomerIds = getAccountHierarchy(adWordsServices, session);
		System.out.println("All accounts present under root

RE: Start/Pause UAC by Adwords API

2019-03-07 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hi Qi,

I'm afraid that the AdWords API currently does not support modifying the
assets of UACs. You may follow our blog
 for
updates.

Thanks and regards,
Peter
AdWords API Team


=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

On 03/08/19 10:43:53 h...@google.com wrote:

Thanks, one more question is if we could start or pause UAC assets by
Adwords API?


On Thursday, March 7, 2019 at 4:21:55 PM UTC+8, googleadsapi-forumadvisor
wrote:

Hi Qi,

You can create UACs using the AdWords API
  
and

you should also be able to set their Status
  
to

ENABLED, PAUSED or REMOVED using the CampaignService.mutate()

 method. I hope this helps.

Thanks and regards,
Peter
AdWords API Team


=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

Was your question answered? Please rate your experience with us by taking a
short survey.
If not -- reply to this email and tell us what else we can do to help.

Take Survey


Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
On 03/07/19 15:44:40 h...@google.com wrote:

hello,

I want to clarify if we could start or pause UAC by Adwords API?

thanks & best regards
Qi

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit https://groups.google.com/d/msgid
/ adwords-api / 480b4350- 147f-40fd-82e5-82f0723f917a%40googlegroups.com

.
For more options, visit https://groups.google.com/d/opeverything
 .

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit https://groups.google.com/d/
msgid/adwords-api/ed097944-457e-44b4-b459-6921095ed54f%40googlegroups.com

.
For more options, visit https://groups.google.com/d/optout.

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com

RE: How to pull conversion_actions from new google ads api?

2019-03-07 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hi Darshan,

My apologies for the delayed response. To better investigate this, could
you provide your clientCustomerId so I could check this on my end (please
reply via *Reply privately to author*)?

Also just to let you know, Google Ads API is now in production and you may
want to use the Google Ads API production release. You may refer to our blog
  
for

more information.

Thanks and regards,
Dannison
Google Ads API Team


=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

On 03/08/19 08:33:51 dars...@companionlabs.com wrote:

Can somebody from Google Ads API Support answer this questions please?

On Tuesday, March 5, 2019 at 5:17:11 PM UTC+11, Darshan Pradhan wrote:

I am using the following query in search service to retrieve all the
conversion_actions

for my customer in context. But I am not getting anything back. Please
advice on how to pull conversion_actions using the Google Ads Beta API.

Select  conversion_action.app_id, conversion_action.attribution_
model_settings.attribution_model,conversion_action.
attribution_model_settings.data_driven_model_status,
conversion_action.category,conversion_action.click_
through_lookback_window_days,conversion_action.counting_type,
conversion_action.id,conversion_action.include_in_conversions_metric,
conversion_action.name,
conversion_action.owner_customer,conversion_action.
phone_call_duration_seconds,conversion_action.status,conversion_action.tag_snippets
FROM conversion_action

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit
https://groups.google.com/d/msgid/adwords-api/9e75c39b-a06f-4c94-b362-ec8651ec12a5%40googlegroups.com

.
For more options, visit https://groups.google.com/d/optout.

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/h0ui9s9a80010cfrpk000ga956z64mj8c1n6co30c1g68qjcc1o%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Start/Pause UAC by Adwords API

2019-03-07 Thread huq via AdWords API and Google Ads API Forum
Thanks, one more question is if we could start or pause UAC assets by 
Adwords API?


On Thursday, March 7, 2019 at 4:21:55 PM UTC+8, googleadsapi-forumadvisor 
wrote:
>
> Hi Qi,
>
> You can create UACs using the AdWords API 
> 
>  and 
> you should also be able to set their Status 
> 
>  to 
> ENABLED, PAUSED or REMOVED using the CampaignService.mutate() 
> 
>  method. 
> I hope this helps.
>
> Thanks and regards,
> Peter
> AdWords API Team
>
>
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
>
> Was your question answered? Please rate your experience with us by taking 
> a short survey.
> If not -- reply to this email and tell us what else we can do to help.
>
> Take Survey 
> 
>
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
> On 03/07/19 15:44:40 h...@google.com  wrote:
>
> hello,
>
> I want to clarify if we could start or pause UAC by Adwords API?
>
> thanks & best regards
> Qi
>
> -- 
> -- 
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> 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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/adwords-api/480b4350-147f-40fd-82e5-82f0723f917a%40googlegroups.com 
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/ed097944-457e-44b4-b459-6921095ed54f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: How to pull conversion_actions from new google ads api?

2019-03-07 Thread Darshan Pradhan
Can somebody from Google Ads API Support answer this questions please?

On Tuesday, March 5, 2019 at 5:17:11 PM UTC+11, Darshan Pradhan wrote:
>
> I am using the following query in search service to retrieve all the 
> conversion_actions 
>  
> for my customer in context. But I am not getting anything back. Please 
> advice on how to pull conversion_actions using the Google Ads Beta API.
>
> Select  conversion_action.app_id, 
> conversion_action.attribution_model_settings.attribution_model,conversion_action.attribution_model_settings.data_driven_model_status,
>  
> conversion_action.category,conversion_action.click_through_lookback_window_days,conversion_action.counting_type,
> conversion_action.id,conversion_action.include_in_conversions_metric,
> conversion_action.name,
> conversion_action.owner_customer,conversion_action.phone_call_duration_seconds,conversion_action.status,conversion_action.tag_snippets
>   
> FROM conversion_action
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/9e75c39b-a06f-4c94-b362-ec8651ec12a5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


RE: How to update tracking_url_template for AdGroupAd using new Google Ads API V1

2019-03-07 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hello Sergei,

I'm checking this internally with the team. We will get back to you with an
update on this.

Thanks,
Bharani, Google Ads API Team

=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/00d12jcqv800otg8i00028v0c8x6omj0c1k60o30c1g68qjed9g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


RE: How to update AdGroup cost in Google.Adwords using API?

2019-03-07 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hello Tohrul,

Welcome to AdWords!!

The Cost
  
metrics

which is the sum of your cost-per-click (CPC) and cost-per-thousand
impressions (CPM) costs during any specified period cannot be modified
through the API or the UI. The pointed code samples refer to bid
adjustments. If you're looking to change the bids, you may refer to this
guide  to
help you get started. The shared code sample
  
is

the correct one. If you're looking for code samples in other languages, you
can find them here
. If you're
having an issue, please let me know by sharing the code snippets of your
implementation, I will be happy to take a look.

Thanks,
Bharani, AdWords API Team

=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/186tuio1g8hf0qijh6x68mjichg6go30c1g68qjce1n%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


RE: Google Ads API Metric List

2019-03-07 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hello Joe,

Currently, downloading the reports in CSV format is not yet supported. I
have shared your concern with the team. Please keep an eye on our blog
 for
more updates. Meanwhile, you will need to use the regular report
downloading where you can obtain performance data for all resources

.

Thanks,
Bharani, Google Ads API Team

=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/186tg2o10m2ibi0026kpi4x6gmj0dph68o30c1g68qjic9k%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


RE: Internal and Permission denied error

2019-03-07 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hi Aneri,

Could you *reply privately to author* with client customer id and logs so
that I can check further? This section
 of guide may be handy.

Regards,
Dhanya, AdWords API Team
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

On 03/07/19 07:33:04 anerigandhit...@gmail.com wrote:

Hello team,

I have just started using Ads API V1 with the PHP Client Library. I am
attempting to get the customer stats for all customers under an MCC account
using the search function of GoogleAdsService after getting all the
customer ids using CustomerClientService.

But search is sometimes failing due to Internal error and sometimes due to
Permission denied error.

Please help me in what can be done.

Regards,
Aneri Gandhi

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit
https://groups.google.com/d/msgid/adwords-api/CAC_cLNuWXSuJ0joujvKgnHM1JMpKkGOCN5dhgLHV7dFbeE62ag%40mail.gmail.com

.
For more options, visit https://groups.google.com/d/optout.

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/08p11g000400gdmd38002gd5r0x6omj0dhn6go30c1g68qjgc1j%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


RE: UserListError.ADVERTISER_NOT_WHITELISTED_FOR_USING_UPLOADED_DATA

2019-03-07 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hello Arthur,

I am checking with the team and I will update this thread when I have more
information

Regards,
Sai Teja, AdWords API Team


=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/00d12jcqv800ort3co0028olnmx6omjadho6co30c1g68q38e9i%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


RE: QuotaCheckError.TERMS_AND_CONDITIONS_NOT_SIGNED after accepting TC for the new Google Ads API V1

2019-03-07 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hello Sergei,

We understand the inconvenience caused. If you do observe the issue again,
please let us know and we will be happy to take a look.

Thanks,
Bharani, AdWords API Team

=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

On 03/07/19 12:13:36 srg@gmail.com wrote:

Yes, now all apis are ok. But our production service was broken for more
than 10 hours.
чт, 7 марта 2019 г. в 19:42, googleadsapi-forumadvisor via AdWords API and
Google Ads API Forum :

Hello,

This issue has been resolved now. Could you please try the API requests
again and let us know if you're still having an issue?

Thanks,
Bharani, AdWords API Team

=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit
https://groups.google.com/d/msgid/adwords-api/186sojo0oesij0002kcb9cx74mj8d9o70o30c1g68qjec1k%40mail.gmail.com

.
For more options, visit https://groups.google.com/d/optout.

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/186tg2o104ub7q0026fbbox74mj8d9o70o30c1g68qjec1k%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


RE: API paging while deleting

2019-03-07 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hi Don,

If I understood your implementation correct, you are performing a get on a
first set of entities and performing a mutate to remove those items. Since
the remove is already performed, your next API call which performs the get
operation should not include the removed entities. The totalNumEntries

in the response at any point should give you the total count of the
entities matching the selector irrespective of the start index and the
numberResults in the request. For instance, once you delete the first 5000
entities, the totalNumEntries in the subsequent get operation should be
5000 less than what you had in your first get call. Please let me know if
this addressed your question.

Also, please note that the limit on results per page in the response is
10,000. You could check here

for the system limits.

Thanks,
Sreelakshmi, AdWords API Team

=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/00d12jcj18018l4frk001go0u8z6omj4e9k6ko30c1g68qj8d1o%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Blank "AdGroupType" value in Ad Group Performance Report

2019-03-07 Thread Tomas R
If it's new unsupported by AdWords API AdGroupType ("Display Smart "), how 
about just returning "Unknown" instead of empty value until it becomes 
supported?

On Wednesday, March 6, 2019 at 9:29:27 PM UTC+1, googleadsapi-forumadvisor 
wrote:
>
> Hello Tomas, 
>
> We are not aware of any recent changes made to the AdGroupType. Could you 
> please share the report definition 
> 
>  along 
> with the AdGroup Id so I can check this further? You can reply back via 
> Reply privately to author option.
>
> Regards,
> Bharani, AdWords API Team
>
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
>
> Was your question answered? Please rate your experience with us by taking 
> a short survey.
> If not -- reply to this email and tell us what else we can do to help.
>
> Take Survey 
> 
>
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
> On 03/06/19 07:23:33 sand...@gmail.com  wrote:
>
> Hi,
>
> Recently we started getting one AdGroup in Ad Group performance report 
> with empty "AdGroupType" value. Was there any intentional change which 
> resulted in this behavior? If so, what's the reason for it being empty?
>
> -- 
> -- 
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> 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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/adwords-api/e13822e5-3dd3-4428-9cf8-3bd94b225827%40googlegroups.com
>  
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/86ded697-45dc-45d8-a4a3-ed442351045d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


RE: GetAccountHierarchy.php on Google Ads API

2019-03-07 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hello Didier,

To get the account hierarchy via Google Ads API, you could use the
customer_client
  
resource.

Through which you can get only the resource name, level, Boolean value of
hidden status and Client_customer details of the accounts under your
manager account. To get these details the OAuth credentials used to make
the API call should be of manager account and the ClientCustomerId passing
in the header should be of manager account. Below is the sample query for
your reference.

Please note that, you have to iterate through all the customers to get the
descriptive_name. To keep the data normalized we are holding only one
resource responsible for a data field.

Query in PHP format is below:

$query = 'SELECT customer_client.resource_name,
customer_client.client_customer,
customer_client.level, customer_client.hidden,
customer_client.level
FROM customer_client';

Please let me know if you have any further questions.

Regards,
Sai Teja, Google Ads API Team


=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/08p11g000400gmigs6002g36c8x6omj6dhp6co30c1g68qjae1j%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


RE: PHP executes GetRefreshToken.php file and reports cRUL 35 error

2019-03-07 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hello,

Seems like the error is related to the network connection or the proxy
connection of your machine, but not related to the AdWords API. I found a  
github

issue  where some
of the users found solution by updating with the brew, libressl, openssl
and curl and rebooting the machine. Please give it a try if the problem
still persists, you could create a new issue on the PHP client library from
here .

Regards,
Sai Teja, AdWords API Team


=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/08p11g000400gpgs8e002g2s1ow6omjgdhk68o30c1g68qj8c9n%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


RE: exclude traffic by user GCLID

2019-03-07 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hello Majed,

It is not possible to fetch the user details for a specific GCLID. You
could use the ClickPerformaceReport
  
around

the date click is performed to get the details of the GCLID like click type
  
etc.

You could post your concern on the advertisers community forum
 to
see if the product specialist has any ideas on this.

Regards,
Sai Teja, AdWords API Team


=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/00d12i993o01g1beck002d7otmz68mj2dpk6oo30c1g68qjee9i%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: MultiAssetResponsiveDisplayAd Image previews

2019-03-07 Thread Oksana Sulyma
I've send details in private message... Have confusion on 
MultiAssetResponsiveDisplayAd and ResponsiveDisplayAd and will appreciate 
any help!

On Thursday, March 7, 2019 at 12:41:24 AM UTC+2, googleadsapi-forumadvisor 
wrote:
>
> Hello,
>
> Unfortunately, ad preview 
>  for 
> MultiAssetResponsiveDisplayAd is not available via the API. Please follow 
> our blog 
> 
>  for 
> any future updates regarding this feature. However, you could try to use 
> the adAsImage 
> 
>  field 
> to get the template ad rendered as an image.
>
> Thanks,
> Milind, AdWords API Team
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
>
> Was your question answered? Please rate your experience with us by taking 
> a short survey.
> If not -- reply to this email and tell us what else we can do to help.
>
> Take Survey 
> 
>
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/b633a227-4957-4833-bbcb-c465fa81a56d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: StoreVisit ConversionTrackerId ADGROUP_PERFORMANCE_REPORT

2019-03-07 Thread Carmine Pagliaro
SOLVED.

Add field ConversionTrackerId, ConversionTypeName from the API call 
removing the where condition.
Get and set the new ConversionTrackeId.


On Thursday, February 21, 2019 at 11:10:33 PM UTC+1, 
googleadsapi-forumadvisor wrote:
>
> Hi Carmine,
>
> If you run your report definition against a MCC or if your adgroups have 
> zero impressions(since you have set *includeZeroImpressions(false)*), you 
> can get empty results. Are you getting values via the UI? If yes, please 
> *reply 
> privately to author* with your client customer id and date range that you 
> are using, so that I can check further.
>
> Regards,
> Dhanya, AdWords API Team
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
>
> Was your question answered? Please rate your experience with us by taking 
> a short survey.
> If not -- reply to this email and tell us what else we can do to help.
>
> Take Survey 
> 
>
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/8d742cc7-8419-426c-869a-819b432c9114%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Geo Performance Report - Geo Target - Metro Codes Names mapping CSV ?

2019-03-07 Thread Pranay
 

Hi Luis,

 

Below are few things, I tried and their results: 

 

1)Tried with minimum set of metro ids in the Predicate. 

a. For most of them, result was empty.  Below are few Ids  

location_names_metro = ['200517', 
'200535','200679','200501','200574','200534','200722','200635','200508','200570','200770','200757','200538','200514','200771','200754','200626','200765','200801']

b. Got result for only few, ex: '200635',’200801’. 

Response: 

[{

'location': {

'id': 9062537,

'type': None,

'Criterion.Type': 'Location',

'locationName': 'Rochor',

'displayType': 'Neighborhood',

'targetingStatus': 'ACTIVE',

'parentLocations': [

{

'id': 2702,

'type': None,

'Criterion.Type': 'Location',

'locationName': 'Singapore',

'displayType': 'Country',

'targetingStatus': 'ACTIVE',

'parentLocations': []

}

]

},

'canonicalName': 'Rochor,Singapore',

'reach': 804000,

'locale': None,

'searchTerm': '200635',

'countryCode': None

}, {

'location': {

'id': 1001655,

'type': None,

'Criterion.Type': 'Location',

'locationName': 'Rio de Janeiro',

'displayType': 'City',

'targetingStatus': 'ACTIVE',

'parentLocations': [

{

'id': 20102,

'type': None,

'Criterion.Type': 'Location',

'locationName': 'State of Rio de Janeiro',

'displayType': 'State',

'targetingStatus': 'ACTIVE',

'parentLocations': []

},

{

'id': 2076,

'type': None,

'Criterion.Type': 'Location',

'locationName': 'Brazil',

'displayType': 'Country',

'targetingStatus': 'ACTIVE',

'parentLocations': []

}

]

},

'canonicalName': 'Rio de Janeiro,State of Rio de Janeiro,Brazil',

'reach': 2470,

'locale': None,

'searchTerm': '200801',

'countryCode': None

}]

The search term "200635" returned the location "Rochor" of type 
"Neighborhood" with parent locations "Singapore (Country)", reach "804000" 
and id "9062537" (ACTIVE)

The search term "200801" returned the location "Rio de Janeiro" of type 
"City" with parent locations "State of Rio de Janeiro (State), Brazil 
(Country)", reach "2470" and id "1001655" (ACTIVE)

 Code: 

def main(client):
# Initialize appropriate service.
location_criterion_service = client.GetService(
'LocationCriterionService', version='v201809')
location_names_metro = ['200517', 
'200535','200679','200501','200574','200534','200722','200635','200508','200570',

'200770','200757','200538','200514','200771','200754','200626','200765','200801']
# Create the selector.
selector = {
'fields': ['Id', 'LocationName', 'DisplayType', 'CanonicalName',
   'ParentLocations', 'Reach', 'TargetingStatus'],
'predicates': [{
'field': 'LocationName',
'operator': 'IN',
'values': location_names_metro
}, {
'field': 'Locale',
'operator': 'EQUALS',
'values': ['en']
}]
}

# Make the get request.
location_criteria = location_criterion_service.get(selector)

2)Cant test for all Metro IDs at once, due to error: 
googleads.errors.GoogleAdsServerFault: 
[SizeLimitError.REQUEST_SIZE_LIMIT_EXCEEDED @ locationName; trigger:'25']

 

*Web report vs API report:*

Considering only few records for comparison.

Below are the values returned from the UI/Web report

 

Region (User location)

Metro area (User location)

City (User location)

New Jersey

New York NY

Manasquan

New York

New York NY

New York

New York

New York NY

Farmingville

 

 

Values returned by API: 

Region

Metro area

City

21164

200501

1022240

21167

200501

1023191

21167

200501

1022909

 

 I was able to map Region and City Ids in the geotargets csv. (as mentioned 
in previous question)

Region

Region_name

Metro

Metro_name

City

City_name

21164

New Jersey

200501

 

1022240

Manasquan

21167

New York

200501

 

1023191

New York

21167

New York

200501

 

1022909

Farmingville

 

Can you please suggest, if there is any other better way to get Metro Names 
which are same as the ones shown in the UI/Web report?


If this is a limitation, I will try to use the metro codes as is. 

 

 

Thanks,

Pranay

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 Goog

How to update tracking_url_template for AdGroupAd using new Google Ads API V1

2019-03-07 Thread Sergei Kim

Dear Google Ads Team,

We would like to use JSON API but can't update fields.

POST 
https://googleads.googleapis.com/v1/customers/{customer_id}/googleAds:mutate/

Content-Type: application/json
Authorization: Bearer foo
developer-token: bar


{
"mutate_operations":
[
{
"ad_group_ad_operation": {
"update": {
"resource_name": 
"customers/{customer_id}/adGroupAds/{ad_group_id}~{ad_group_ad_id}",
"ad": {
"tracking_url_template": "{lpurl}&foo=bar"
}
},
"update_mask": "ad.tracking_url_template"
}
}
]

}


But request failed

{
  "error": {
"code": 400,
"message": "Request contains an invalid argument.",
"status": "INVALID_ARGUMENT",
"details": [
  {
"@type": 
"type.googleapis.com/google.ads.googleads.v1.errors.GoogleAdsFailure",
"errors": [
  {
"errorCode": {
  "requestError": "IMMUTABLE_FIELD"
},
"message": "Field 'ad.tracking_url_template' cannot be modified 
by 'UPDATE' operation.",
"location": {
  "fieldPathElements": [
{
  "fieldName": "mutate_operations",
  "index": "0"
},
{
  "fieldName": "ad_group_ad_operation"
},
{
  "fieldName": "update"
},
{
  "fieldName": "ad"
},
{
  "fieldName": "tracking_url_template"
}
  ]
}
  }
]
  }
]
  }
}

Thanks,
Sergei

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/f3b93b65-9d42-47e8-b7ae-f925e6cbb20b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: UserListError.ADVERTISER_NOT_WHITELISTED_FOR_USING_UPLOADED_DATA

2019-03-07 Thread Arthur chen
Hi Sai:

Is that issue solved. Our testing account still get this error?

Thanks

Arthur

On Friday, December 21, 2018 at 2:53:05 PM UTC-5, Teja Makani wrote:
>
> Hello Priyanka,
>
> I am Luis's teammate, responding on this thread as he is out of office. 
> You are right, only production accounts needed to be whitelisted to upload 
> customer match data. Also, there is an issue going on to enable customer 
> match upload operations to test accounts. As of now when you perform an 
> upload customer match operation to test accounts you will face 
> ADVERTISER_NOT_WHITELISTED_FOR_USING_UPLOADED_DATA error. I will keep 
> everyone posted on this thread as and when i have more information.
>
> Regards,
> Sai Teja, AdWords API Team
>
> On Tuesday, November 27, 2018 at 10:39:19 AM UTC-5, 
> serg...@clickfunnels.com  wrote:
>>
>> Hello 
>> I'm getting this error trying this example code: 
>> https://github.com/googleads/google-api-ads-ruby/blob/master/adwords_api/examples/v201809/remarketing/add_crm_based_user_list.rb
>>  
>>
>> AdwordsApi::V201802::AdwordsUserListService::ApiException: [
>> *UserListError.ADVERTISER_NOT_WHITELISTED_FOR_USING_UPLOADED_DATA* @ 
>> operations[0].operand]
>>
>>
>> *What should I do to fix that error?*
>>
>>
>> 
>>
>>
>> Test Client Account: 500-997-9511
>>
>> Test Manager Account: 537-432-1982
>>
>> Manager Account: 169-466-2792
>>
>>
>>
>> Request log:
>>
>> [2018-11-27T15:33:04.351501 #10996]  WARN -- : ID: 500-997-9511, URL: 
>> https://adwords.google.com/api/adwords/rm/v201802/AdwordsUserListService, 
>> Service: AdwordsUserListService, Action: mutate, Response time: 171ms, 
>> Request ID: 00057ba57d353e980a815710d40f2753, Operations: 1, Is fault: 
>> true, Fault message: 
>> [UserListError.ADVERTISER_NOT_WHITELISTED_FOR_USING_UPLOADED_DATA @ 
>> operations[0].operand]
>>
>> I, [2018-11-27T15:33:04.351742 #10996]  INFO -- : Outgoing request: 
>> SOAPAction: "mutate", User-Agent: Ruby Sample (AwApi-Ruby/1.3.0, 
>> Common-Ruby/1.0.2, GoogleAdsSavon/1.0.3, ruby/2.3.7, HTTPI/2.4.3, 
>> httpclient), Authorization: REDACTED, Content-Type: text/xml;charset=UTF-8, 
>> Content-Length: 1131 > xmlns:xsd="http://www.w3.org/2001/XMLSchema"; xmlns:xsi="
>> http://www.w3.org/2001/XMLSchema-instance"; xmlns:wsdl="
>> https://adwords.google.com/api/adwords/rm/v201802"; xmlns:env="
>> http://schemas.xmlsoap.org/soap/envelope/"; xmlns:ns0="
>> https://adwords.google.com/api/adwords/cm/v201802";>>  
>> xmlns="https://adwords.google.com/api/adwords/cm/v201802";>Ruby 
>> Sample (AwApi-Ruby/1.3.0, Common-Ruby/1.0.2, GoogleAdsSavon/1.0.3, 
>> ruby/2.3.7, HTTPI/2.4.3, 
>> httpclient)REDACTED500-997-9511>  
>> xmlns="https://adwords.google.com/api/adwords/rm/v201802";>ADD>  
>> xsi:type="CrmBasedUserList">Customer relationship management list 
>> #978889A list of customers that originated from email 
>> addresses30CONTACT_INFO
>>
>> I, [2018-11-27T15:33:04.351912 #10996]  INFO -- : Incoming response: 
>> Content-Type: text/xml; charset=UTF-8, Date: Tue, 27 Nov 2018 13:33:04 GMT, 
>> Expires: Tue, 27 Nov 2018 13:33:04 GMT, Cache-Control: private, max-age=0, 
>> X-Content-Type-Options: nosniff, X-Frame-Options: SAMEORIGIN, 
>> X-XSS-Protection: 1; mode=block, Server: GSE, Alt-Svc: quic=":443"; 
>> ma=2592000; v="44,43,39,35", Accept-Ranges: none, Vary: Accept-Encoding, 
>> Transfer-Encoding: chunked http://schemas.xmlsoap.org/soap/envelope/";>> xmlns:ns2="https://adwords.google.com/api/adwords/rm/v201802"; xmlns="
>> https://adwords.google.com/api/adwords/cm/v201802";>00057ba57d353e980a815710d40f2753AdwordsUserListServicemutate1171soap:Client[UserListError.ADVERTISER_NOT_WHITELISTED_FOR_USING_UPLOADED_DATA
>>  
>> @ operations[0].operand]https://adwords.google.com/api/adwords/cm/v201802"; xmlns:ns2="
>> https://adwords.google.com/api/adwords/rm/v201802";>[UserListError.ADVERTISER_NOT_WHITELISTED_FOR_USING_UPLOADED_DATA
>>  
>> @ 
>> operations[0].operand]ApiException>  
>> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
>> xsi:type="ns2:UserListError">operations[0].operandoperations0operandUserListError.ADVERTISER_NOT_WHITELISTED_FOR_USING_UPLOADED_DATAUserListErrorUSER_LIST_SERVICE_ERROR
>>
>> AdwordsApi::V201802::AdwordsUserListService::ApiException: 
>> [UserListError.ADVERTISER_NOT_WHITELISTED_FOR_USING_UPLOADED_DATA @ 
>> operations[0].operand]
>>
>> Regards, 
>> Sergey
>>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 
"AdW

Internal and Permission denied error

2019-03-07 Thread Aneri Gandhi
Hello team,

I have just started using Ads API V1 with the PHP Client Library. I am
attempting to get the customer stats for all customers under an MCC account
using the search function of GoogleAdsService after getting all the
customer ids using CustomerClientService.

But search is sometimes failing due to Internal error and sometimes due to
Permission denied error.

Please help me in what can be done.

Regards,
Aneri Gandhi

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/CAC_cLNuWXSuJ0joujvKgnHM1JMpKkGOCN5dhgLHV7dFbeE62ag%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


How to update AdGroup cost in Google.Adwords using API?

2019-03-07 Thread Tohrul
Hello, everyone! I'm new to AdWords API and I have seen examples here 
,
 
but still I don't understand two things:

1. Is it possible to update AdGroup cost using API?
2. If it is possible, then how to do that? Can you give me a working 
example?

Thank you!

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/5e763ba1-02c3-4838-ae77-390283639981%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: QuotaCheckError.TERMS_AND_CONDITIONS_NOT_SIGNED after accepting TC for the new Google Ads API V1

2019-03-07 Thread Sergei Kim
Yes, now all apis are ok. But our production service was broken for more
than 10 hours.
чт, 7 марта 2019 г. в 19:42, googleadsapi-forumadvisor via AdWords API and
Google Ads API Forum :

> Hello,
>
> This issue has been resolved now. Could you please try the API requests
> again and let us know if you're still having an issue?
>
> Thanks,
> Bharani, AdWords API Team
>
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
>
> --
> --
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> 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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/adwords-api/186sojo0oesij0002kcb9cx74mj8d9o70o30c1g68qjec1k%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/CA%2Bf%3DMpzVRL8hpk2Yjdck4%3DTRG%3DxEvp00OMov7TymtQrZwDheNw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


RE: Error when batch creating adgroup with 17,200+ product groups

2019-03-07 Thread richard . scorer
Hi Josh,

Thanks very much for your response, much appreciated...

I will apply your suggested fix first thing in the morning!

Cheers,
Richard

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/afa89301-bd26-4e03-9e08-4cb8faaf3f03%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Google Ads API Metric List

2019-03-07 Thread Joe Stedman
Hi,

With the AdWords API it's always been possible to download a csv of all the 
metrics found here: the button at the top of this page 

.
Does something similar exist for the Google Ads API? Closest thing I could 
find was this metric list here: 
https://developers.google.com/google-ads/api/docs/fields/metrics  
 but 
there's no file export.

Thanks,
Joe

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/9496c194-8ba3-4ce8-bacd-20d724e73ae9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


RE: QuotaCheckError.TERMS_AND_CONDITIONS_NOT_SIGNED after accepting TC for the new Google Ads API V1

2019-03-07 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hello,

This issue has been resolved now. Could you please try the API requests
again and let us know if you're still having an issue?

Thanks,
Bharani, AdWords API Team

=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/186sojo0oesij0002kcb9cx74mj8d9o70o30c1g68qjec1k%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: QuotaCheckError.TERMS_AND_CONDITIONS_NOT_SIGNED after accepting TC for the new Google Ads API V1

2019-03-07 Thread Kevin Nguyen
Hi Bharani,

This sounds like a super serious issue. Please update the blog post so 
other people are not effected by this as well. Our team is lucky that we 
did not even see the term and condition to accept.



On Wednesday, March 6, 2019 at 2:35:46 PM UTC-8, googleadsapi-forumadvisor 
wrote:
>
> Hello Sergei, 
>
> Our team is considering this as a priority and investigating this. I will 
> keep you posted on this thread on any further updates.
>
> Thanks,
> Bharani, AdWords API Team
>
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
>
> Was your question answered? Please rate your experience with us by taking 
> a short survey.
> If not -- reply to this email and tell us what else we can do to help.
>
> Take Survey 
> 
>
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
> On 03/06/19 14:04:57 srg...@gmail.com  wrote:
>
> Hi Bharani,
>
> Do you have any updates? In 2 hours our system will start massive sync of 
> all objects and we are forced to decide to cancel or not this operation.
>
> Thanks
>
>
>
> On Wednesday, March 6, 2019 at 5:37:54 PM UTC+3, Sergei Kim wrote:
>
> Dear AdWords Team,
>
>
> At the moment all our production requests (old api v201809) are failing 
> due to QuotaCheckError.TERMS_AND_CONDITIONS_NOT_SIGNED. This happened 
> after new TC was accepted (https://ads-developers.googleblog.com/2019/03/
> upgrade-to-new-google-ads-api-to-get.html).
>
> How can we fix this? The problem has HIGH priority because all our 
> customers can't use Google AdWords integration.
>
> Thanks,
> Sergei Kim
>
> CoMagic
>
> -- 
> -- 
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> 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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/adwords-api/acb5073d-8d1d-40c2-9f27-41f1dffde539%40googlegroups.com
>  
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/ac7d745b-1eb6-47e7-8aab-6ee13d310219%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


API paging while deleting

2019-03-07 Thread Don Mitchell
If my account has over 5000 of an object type (say ad_group, feed mapping, 
feed items, keywords),
If I write a loop intending to remove them all,
If the loop first does a get where status = ENABLED for the 5000 page size,
then the loop does a mutate with operation REMOVE against all the entities 
retrieved by the get,

ON the next iteration of the loop, should the GET operation start_index be 
0 or 5000?

That is, does Google know I'm paging through a result set and is careful to 
keep the cursor and progress it (e.g., so as to not return duplicates since 
the results are unordered and there's nothing sacred about result foo being 
the ith result) or does it do a fresh query and thus the first 5000 which 
now have status = REMOVED won't be in the result; so the start_index should 
be 0?

Perhaps the right (always sound) way, would be to do an initial query to 
get the total_num_entries and then iterate backwards from that number to 0 
in chunks of 5000, but that unnecessarily increases my queries by 1 which 
seems excessive if 99.9% of these accounts have less than 5000 entries.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/a25f4099-ab69-4cb4-bcb9-35e209ddc0dc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


RE: Google Ads API Workshop in Munich

2019-03-07 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hello Navneeta,

Our 2019 workshops do have waiting lists right now. Up to a week before, if
someone cancels, we immediately go to the next person on the waiting list
and ask if they would like to attend. We reach out to people before the
workshops who have signed up making sure that they are really coming so
that people on the waitlist have a chance to attend. We are at full
capacity for the location, so if you have not received a notification then
unfortunately won't be able to attend.

Please let me know if you have any other questions.

Regards,
Bharani, Google Ads API Team

=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/00d12i993o01gtqna6002ck03cx6smjicpm6oo30c1g68qjcd9n%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: BudgetService NON_MULTIPLE_OF_MINIMUM_CURRENCY_UNIT

2019-03-07 Thread Maksat Mamytov
Hi Dannison,

I tried the approach from the link you shared but I am still getting the
same error message. My code is like below:

$micro = $amount * 100;

return floatval(number_format($micro, 0, '.', ''));

Is there any other reasons it may fail?

Thanks,

Maks


On Thu, Mar 7, 2019 at 9:27 AM googleadsapi-forumadvisor via AdWords API
and Google Ads API Forum  wrote:

> Hi Maks,
>
> The error NON_MULTIPLE_OF_MINIMUM_CURRENCY_UNIT
> 
>  is
> encountered when a money amount was not a multiple of a minimum unit. After
> some investigation, this appears to be an issue with the SOAP toolkit and
> the client library. For 64 bit machine we need to use number_float for
> converting the amount back to string and then pass it under setAmount
> function. You could refer to this GitHub post
>  for more
> details. Let me know if this solves your problem.
>
> Regards,
> Dannison
> AdWords API Team
>
>
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
>
> Was your question answered? Please rate your experience with us by taking
> a short survey.
> If not -- reply to this email and tell us what else we can do to help.
>
> Take Survey
> 
>
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
> On 03/06/19 23:52:36 maks.mamy...@avana.asia wrote:
>
> Hi Support Team,
>
> I am having an issue with BudgetService mutate. Details are as below:
>
> 1. I am using PHP 64 bit.
> 2. For conversion I am using number_format($amount, 0, '.', '')
> 3. Our account currency is IDR.
>
> Below SOAP request XML:
>
> 
> http://schemas.xmlsoap.org/soap/envelope/"; xmlns:ns1="
> https://adwords.google.com/api/adwords/cm/v201806";>
> 
> 
> 6966754895
> REDACTED
> unknown (AwApi-PHP, googleads-php-lib/36.0.0,
> PHP/7.2.15-1+ubuntu16.04.1+deb.sury.org+1)
> false
> false
> 
> 
> 
> 
> 
> ADD
> 
> All Products Campaign 2019-03-06 07:20:32
> #5c7f7394d3314
> 
> 3459510
> 
> STANDARD
> false
> 
> 
> 
> 
> 
>
> I have been trying different fixes I found in Internet but nothing helped.
>
> Thanks in advance,
> Maks
>
> --
> --
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> 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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/adwords-api/fd8298ca-5891-4282-a832-6314bf07d80e%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>
> --
> --
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> 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 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 and Google Ads 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

RE: Error when batch creating adgroup with 17,200+ product groups

2019-03-07 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hi Richard,

The good news is that it looks like you're constructing your operations
correctly. The bad news is that due to the complexity of *ProductPartition*  
mutates,

there are edge cases where *BatchJobService* will run into the error you
mentioned when it retries a subset of operations that mutate a product
partition tree.

As a workaround, you could try the following when you have extremely large
product partition trees:

   1. Submit one batch job that adds a subset of the product partitions,
   making sure it includes the "other" node for every subdivision.
   2. Once the first job completes, submit another batch job that only adds
   more UNIT nodes to SUBDIVISIONS where you already added the "other" node  
in

   the first job. Since this second job isn't changing the structure of the
   tree or modifying/adding the "other" node, it shouldn't encounter the  
error

   below.

For example, if you want a two level tree like this:

   - Root
  - ProductOfferId 1
  - ProductOfferId 2
  - ...
  - ProductOfferId 17,258
  - ProductOfferId null (the "other" node)

Then batch job 1 could submit:

   - Root
  - ProductOfferId 1
  - ProductOfferId 2
  - ...
  - ProductOfferId *7,000 <-- You could make this much smaller if
  that's easier. The key thing is to get the structure of the tree in  
place,

  with an "other" node under every subdivision.*
  - ProductOfferId null (the "other" node)

And batch job 2 could just include:

   - ProductOfferId 7,001
  - ProductOfferId 7,002
  - ...
  - ProductOfferId 17,258

The batch job team is looking into fixing this, but I don't have a timeline
at this point.

Thanks,
Josh, AdWords API Team

=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

On 03/06/19 04:37:25 richard.sco...@redbrain.com wrote:

Hello Sai,

I believe this to be the OTHER case:

 AdGroupCriterionOperation{operand=NegativeAdGroupCriterion{adGroupId=-2,
criterion=ProductPartition{caseValue=ProductOfferId{}, id=-17253,
parentCriterionId=-1, partitionType=UNIT}}, operator=ADD},

We don't want to bid on the other items in this group, so we are adding it
as an excluded unit.

This same code has worked when the number of product groups is less than
17,000. I have not worked out the point at which it starts failing. Perhaps
I'm missing something. I've read that page numerous times, and still don't
see where the problem lies...

I use the ProductPartitionTree code as found in googleads-java-lib - i also
tried adding the excluded unit as a sub division, and ended up with the
same error.


val rootNode =
productPartitionTree.root.removeAllChildren().asSubdivision()
for (product in products) {

rootNode.addChild(createProductItemAttribute(product)).asBiddableUnit().bid
= bidAmount
}

rootNode.addChild(createProductItemAttribute(null)).asExcludedUnit()
...

private fun createProductItemAttribute(offer: String?):
ProductDimension {
return ProductDimensions.createOfferId(offer)
}


Thanks,
Richard



On Tuesday, 5 March 2019 23:08:11 UTC, googleadsapi-forumadvisor wrote:

Hello Richard,

While creating the product partitions, remember that each subdivision must
contain an "empty" case value of the correct type, representing "all other
values". Basically, you have to create another empty subdivision that
represents all other categories to complete the product partition table,
the partition table should be always completed. When you miss the others
subdivision then it is likely to see the PRODUCT_PARTITION_SUBDIVISION_

REQUIRES_OTHERS_CASE
  
error.

You could refer this guide
  
for

more information. Please let me know if you have any further questions.

Regards,
Sai teja, AdWords API Team


=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

Was your question answered? Please rate your experience with us by taking a
short survey.
If not -- reply to this email and tell us what else we can do to help.

Take Survey


Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/ad

RE: GoogleAds RESOURCE_EXHAUSTED Rate Limits

2019-03-07 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hi Caihua,

My understanding is that the quota error you're getting is based on the
developer token, but I'm following up with our engineers to:

a) Confirm the above.
b) Determine how you can identify errors caused by exceeding rate limits at
the customer account level (the equivalent of *rateScope=ACCOUNT* in the
AdWords API
).

I'll reply back once I have that information.

Regarding question 3 below, the concept of rate limits at the developer
token and account level also exist within the AdWords API. Please see the
link above for details.

Cheers,
Josh, Google Ads API Team

=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

On 03/06/19 11:04:22 ducai...@gmail.com wrote:

Thanks Luis.

I still have a few questions:
1. If service side think “I” am making too many requests, I believe it’s
based on the dev token, otherwise I am not sure how to distinguish
different customers from server side. So looks to me this is token based
throttling?
2. You mentioned the throttling happened if we make too many calls in short
period “regardless” the access level, so even standard token with unlimited
daily request also have this issue I assume. So what is the definition of
too many request? Let’s say how many per minute?
3. Do we also have this in AdWords API just something new in Google Ads?

Thanks,
Caihua

On Wednesday, March 6, 2019 at 2:11:45 AM UTC-8, googleadsapi-forumadvisor
wrote:

Hi Caihua,






The link that you mentioned is more on the daily limits based on the

access levels. The RESOURCE_EXHAUSTED error is based on the system
frequency limit of the server and could occur if you are making too many
request in a short period of time regardless of your access level.



Hope this clarifies your concern.




Thanks and regards,
Luis
Google Ads API Team




=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~



Also find us on our blog and discussion group:



 http://googleadsdeveloper.blogspot.com/search/label/adwords_api



 https://developers.google.com/adwords/api/community/



=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~







Was your question answered? Please rate your experience with us by taking

a short survey.


If not -- reply to this email and tell us what else we can do to help.




Take Survey






Also find us on our blog and discussion group:



http://googleadsdeveloper.blogspot.com/search/label/adwords_api



https://developers.google.com/adwords/api/community/
On 03/06/19 15:37:39 duca...@gmail.com wrote:




Hi Luis,




We saw this in Google Ads doc:

https://developers.google.com/google-ads/api/docs/access-levels, looks like
we do have the doc for rate limit, can you please clarify?



Also can you please clarify based on which criteria that server think

there are too many request? Is this at dev token level or account level? We
used to have the concept of rate scope that tells us the reason of
throttling error (due to the dev token usage or due to account usage,
please check this:
https://developers.google.com/adwords/api/docs/guides/rate-limits). If my
request is throttled how can should I address accordingly without the
throttling reason?



Thanks,
Caihua.
On Tuesday, March 5, 2019 at 9:38:29 PM UTC-8, googleadsapi-forumadvisor

wrote:




Kevin,






Currently, Google Ads API has no documentation for rate limits.

The QuotaCheckError.RESOURCE_EXHAUSTED will occur if you are sending too
many requests in a short period of time. There is no scope for this error
but rather the server will throw this error once it detects that your
request has exceeded the system frequency limit. The best solution to this
is to set up short delays between requests or combine more operations in
fewer requests.



Thanks and regards,
Luis
Google Ads API Team




=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~



Also find us on our blog and discussion group:



 http://googleadsdeveloper.blogspot.com/search/label/adwords_api



 https://developers.google.com/adwords/api/community/



=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~







Was your question answered? Please rate your experience with us by taking

a short survey.


If not -- reply to this email and tell us what else we can do to help.




Take Survey






Also find us on our blog and discussion group:



http://googleadsdeveloper.blogspot.com/search/label/adwords_api



https://developers.google.com/adwords/api/community/
On 03/06/19 08:30:58 lopsid...@gmail.com wrote:



Hi,




I saw a previous post related to the issue I'm having:

https://groups.google.com/forum/#!searchin/adwords-api/resource_exhausted%7Csort:date/adwords-api/ZqvA-qZrI9Y/CT
sJCmvyAAAJ

and know that his solution was to revert back to using AdWords API.




In t

Re: Bid Adjustments

2019-03-07 Thread cv
I am using Google Adwords API, But I have started using new API as well.

On Wednesday, 13 February 2019 18:49:38 UTC+5:30, cv wrote:
>
> Hello,
>
> What is best practise to retrieve Demographics Bid Adjustments (GENDER, 
> AGE_RANEG, LOCATION, INCOME_RANGE)
>
> I am seeing that AdgroupCriteriaService, CamapignCriteriaService, 
> AdgroupBidModifierService, CampaignBidModifierService can be use.
>
> But I need all Demographics adjustments made under the account at adgroup 
> level.
>
> https://developers.google.com/adwords/api/docs/guides/bidding
>
>
>
> Thanks,
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/66ff0e14-c493-4f99-8b97-4f23474aaae7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


GetAccountHierarchy.php on Google Ads API

2019-03-07 Thread Didier Roy
Hi All

I a looking for the equivalent of Google Adwords 
API GetAccountHierarchy.php on Google Ads API.

thanks


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/f3b64a92-5716-44aa-ba18-ef0bb078f98b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


PHP executes GetRefreshToken.php file and reports cRUL 35 error

2019-03-07 Thread 苑栋杰
PHP executes the GetRefreshToken.php file and reports an error in the last 
step. The following is the error content:

*Fatal error: Uncaught GuzzleHttp\Exception\ConnectException: cURL error 
35: LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to 
oauth2.googleapis.com:443*  (see 
http://curl.haxx.se/libcurl/c/libcurl-errors.html) in 
/Users/mena/Documents/www/laravel-admin/vendor/guzzlehttp/guzzle/src/Handler/CurlFactory.php:185
Stack trace:
#0 
/Users/mena/Documents/www/laravel-admin/vendor/guzzlehttp/guzzle/src/Handler/CurlFactory.php(149):
 
GuzzleHttp\Handler\CurlFactory::createRejection(Object(GuzzleHttp\Handler\EasyHandle),
 
Array)
#1 
/Users/mena/Documents/www/laravel-admin/vendor/guzzlehttp/guzzle/src/Handler/CurlFactory.php(102):
 
GuzzleHttp\Handler\CurlFactory::finishError(Object(GuzzleHttp\Handler\CurlHandler),
 
Object(GuzzleHttp\Handler\EasyHandle), 
Object(GuzzleHttp\Handler\CurlFactory))
#2 
/Users/mena/Documents/www/laravel-admin/vendor/guzzlehttp/guzzle/src/Handler/CurlHandler.php(43):
 
GuzzleHttp\Handler\CurlFactory::finish(Object(GuzzleHttp\Handler\CurlHandler), 
Object(GuzzleHttp\Handler\EasyHandle), Object(GuzzleHttp\Handler\Cu in 
/Users/mena/Documents/www/laravel-admin/vendor/guzzlehttp/guzzle/src/Handler/CurlFactory.php
 
on line 185

Laravel 5.5 framework and php library introduced with composer. I want to 
know why this is happening and solve it. This problem has been bothering me 
for a long time. Thank you for your help.
I am in China, using the shadowsocks global proxy

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/b7bdbcb5-d842-418b-b632-70a36066e6bc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


RE: Web UI have data, But report api is zero values.

2019-03-07 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hi Josh,

So I can better investigate the issue, could you provide to me your
clientCustomerId and the complete report definition
  
you

used to generate the report? You may send your reply using the *Reply
privately to author* option.

Thanks and regards,
Peter
AdWords API Team

On 03/07/19 16:25:01 ltduong1...@gmail.com wrote:

Hello AdWords API and Google Ad Manager API PHP developers!
I get a issue with some customerID. I can see values (diff 0) and download
data on WebUI, But I get report with API, All filter is zeros.

[image: Capture.PNG]

I'm using version: 201809
Service : CAMPAIGN_PERFORMANCE_REPORT

Thanks,
Josh, AdWords API Team

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit https://groups.google.com/d/
msgid/adwords-api/4abfc064-d3cb-4e57-bfea-e2fda112f490%40googlegroups.com

.
For more options, visit https://groups.google.com/d/optout.

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/1avghio0gk8mhe002i92p8z64mjid1m60o30c1g68qj8e1l%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


exclude traffic by user GCLID

2019-03-07 Thread majed farahat
is there any way i can exclude users based on GCLID ?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/a4caea29-2e56-40cc-ae93-0ce371a0102c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: google ads api v1 syntax error.

2019-03-07 Thread Inspired UM
Updated Python library to V1.0.1 and accepted new terms and conditions and 
everything is working for me.

Thank you.

On Wednesday, 6 March 2019 18:38:06 UTC+2, googleadsapi-forumadvisor wrote:
>
> Hello Everyone,
>
> Our team is aware of this issue and working on resolving this. You could 
> also followup on the Python Github issue tracker here 
> . 
>
> Regards,
> Sai Teja, Google Ads API Team
>
> Was your question answered? Please rate your experience with us by taking 
> a short survey.
> If not -- reply to this email and tell us what else we can do to help.
>
> Take Survey 
> 
>
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/e0974149-1b19-4e2f-bf89-d24d48919ca8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


RE: Restore deleted OAuth 2.0 client

2019-03-07 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hi,

Your issue seems to be related to Google API Console rather than the
AdWords API. I would suggest to contact their support team via the *Help  
*section

of your Google API Console
 account as they
are better equipped to assist you in your concern on recovering your OAuth
credentials.

Thanks and regards,
Luis
AdWords API Team


On 03/07/19 16:12:13 api.fwmoc...@gmail.com wrote:

Hello,

We mistakenly deleted our OAuth 2.0 client. After that we created a new one.
 Most of our programs work fine with the new client, but it causes troubles
with the existing MyBusiness Feeds in our accounts. The feeds use the old
tokens and so we can't use them anymore. Is there any possibility to restore
 the old client to continue using it?

We have a large number of accounts, so it would be fantastic if we wouldn't
be forced to delete and reconnect all feeds.

Thanks

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit
https://groups.google.com/d/msgid/adwords-api/6f50f713-3fe8-4781-96e8-689e3c761e0c%40googlegroups.com

.
For more options, visit https://groups.google.com/d/optout.

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/1ajoeio1gb78lc001o438ez6gmjec9j70o30c1g68qjadhg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Finding out the given feed_id belongs to which Client_Customer_ID

2019-03-07 Thread shweta . sontakke . tc
I have a Feed_Id and I need to find out this id belongs to which 
Client_Customer_ID in Adwords using the Adwords API.

Please let me know is there any selector using which we can achieve this.

Regards,
Shweta Padwekar

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/94cd2660-a876-4345-8325-5a8dc219a7ed%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Web UI have data, But report api is zero values.

2019-03-07 Thread Dương Lê
Hello AdWords API and Google Ad Manager API PHP developers!
I get a issue with some customerID. I can see values (diff 0) and download 
data on WebUI, But I get report with API, All filter is zeros.

[image: Capture.PNG]

I'm using version: 201809
Service : CAMPAIGN_PERFORMANCE_REPORT

Thanks,
Josh, AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/4abfc064-d3cb-4e57-bfea-e2fda112f490%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


RE: Start/Pause UAC by Adwords API

2019-03-07 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hi Qi,

You can create UACs using the AdWords API
  
and

you should also be able to set their Status
  
to

ENABLED, PAUSED or REMOVED using the CampaignService.mutate()
  
method.

I hope this helps.

Thanks and regards,
Peter
AdWords API Team


=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

On 03/07/19 15:44:40 h...@google.com wrote:

hello,

I want to clarify if we could start or pause UAC by Adwords API?

thanks & best regards
Qi

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit https://groups.google.com/d/
msgid/adwords-api/480b4350-147f-40fd-82e5-82f0723f917a%40googlegroups.com

.
For more options, visit https://groups.google.com/d/optout.

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/1btflug1g3q2rc001ridqqy6gmjadpo70o30c1g68qjed1j%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Restore deleted OAuth 2.0 client

2019-03-07 Thread FW API
Hello,

We mistakenly deleted our OAuth 2.0 client. After that we created a new one.
 Most of our programs work fine with the new client, but it causes troubles 
with the existing MyBusiness Feeds in our accounts. The feeds use the old 
tokens and so we can't use them anymore. Is there any possibility to restore
 the old client to continue using it?

We have a large number of accounts, so it would be fantastic if we wouldn't 
be forced to delete and reconnect all feeds.

Thanks

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/6f50f713-3fe8-4781-96e8-689e3c761e0c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.