Target Carrier Yoigo,"ES","Spain","70333"

2024-04-12 Thread Jorge Guerrero Aguilar
Hi, 

Launched a campaign with carrier segmentation Yoigo,"ES","Spain","70333" 
but seems that never get traffic. In the UI appear that carrier for Spain 
but i dont know if the problem is that Google dont have traffic for that 
carrier segmentation of there is another code, cause Yoigo is under 
Masmovil Group now another carrier, and maybe there is another code for the 
carrier that dont appear in the csv and in the UI

Kind Regards

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/e97f4f8b-6d1c-45b2-ab60-1d616fb72fe9n%40googlegroups.com.


Inquiry on API Access for Bulk Reporting of Trademark Infringements

2024-04-12 Thread Rawad Jammoul
Hi guys, could you please let me know if Google offers any APIs or 
integration options that would enable us to report trademark infringements 
in bulk? Currently, our process involves using the manual form, and we are 
looking for a more streamlined, automated solution
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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/6382f7c3-a3b8-4ffd-b3e8-56134db6c19cn%40googlegroups.com.


Google Ads API Integration Error - GRPC Error

2024-04-12 Thread Márcio Duarte
Hi there, 

I'm trying to integrate with Google Ads API using the available .NET 
package (Google.Ads.GoogleAds latest version - 19.0.1) on a .NET 8 project.

I'm setting up the API out of the samples provided, and currently getting a 
very generic GRPC error which I'm not able to figure out what is going on.

*Message: *Status(StatusCode="Internal", Detail="Internal error 
encountered.")
*Stacktrace: *   at 
Google.Ads.Gax.Interceptors.StreamingRpcInterceptor`1.MoveNext(CancellationToken
 
cancellationToken)
   at 
Google.Api.Gax.Grpc.AsyncResponseStream`1.MoveNextAsync(CancellationToken 
cancellationToken)
   at 
Google.Ads.GoogleAds.V16.Services.GoogleAdsServiceClient.<>c__DisplayClass32_0.d.MoveNext()
--- End of stack trace from previous location ---
   at Program.<>c.<<$>b__0_0>d.MoveNext() in \Program.cs:line 61

The sample application is as follows:

var builder = WebApplication.CreateBuilder(args);
builder.Services.AddEndpointsApiExplorer();
builder.Services.AddSwaggerGen();

var app = builder.Build();

// Configure the HTTP request pipeline.
if (app.Environment.IsDevelopment())
{
app.UseSwagger();
app.UseSwaggerUI();
}

app.UseHttpsRedirection();


app.MapGet("/sample", async () =>
{
  var config = new GoogleAdsConfig() {
 OAuth2Mode = Google.Ads.Gax.Config.OAuth2Flow.APPLICATION,
 DeveloperToken = "",
 OAuth2ClientId = "",
 OAuth2ClientSecret = "",
 LoginCustomerId = "",
 LinkedCustomerId = "",
 OAuth2RefreshToken =
""
  };

  // Create a Google Ads client.
  var client = new GoogleAdsClient(config);

  // Create the required service.
  var service =
 client.GetService(Services.V16.GoogleAdsService);

  // Create a query that will retrieve all campaigns.
  var query = $@"SELECT
campaign.id,
campaign.name,
campaign.network_settings.target_content_network
FROM campaign
ORDER BY campaign.id";

  var request = new SearchGoogleAdsStreamRequest();
  request.Query = query;

  try {

 await service.SearchStreamAsync(request, (response) => {

foreach (var googleAdsRow in response.Results) {
   Console.WriteLine("Campaign with ID {0} and name '{1}' was 
found.",
  googleAdsRow.Campaign.Id, googleAdsRow.Campaign.Name);
}

 });
  }
  catch (GoogleAdsException e) {
 Console.WriteLine("Failure:");
 Console.WriteLine($"Message: {e.Message}");
 Console.WriteLine($"Failure: {e.Failure}");
 Console.WriteLine($"Request ID: {e.RequestId}");
 throw;
  }
  catch (Exception ex) {
 
  }   
})
.WithName("GetSample")
.WithOpenApi();

app.Run();


Is there any other setup needed for GRPC to work as expected?
Would you be able to help me, please?

Much appreciated.


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/cdd90fa4-174f-4d3e-bf2e-84bccc3b6ec9n%40googlegroups.com.


Google Ads API Developer Token Basic Access

2024-04-12 Thread Vinicius Viana Vieira
Hey there,

I've submitted this form 
 multiple 
times requesting basic access to the Google Ads API, but haven't heard back 
so far. Using this email.

We really need to integrate with production Google Ads accounts in order to 
serve our clients with campaign reporting data. As mentioned in the 
application, our company is currently in Brazil, thus there's not a lot of 
public information available at this point.

However, if there's any information missing and/or you need more 
clarification about our company or use case, don't hesitate to reach out to 
us and we'll be glad to clarify.

Looking forward to hearing from you.

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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/8d00c80a-ae4a-4605-b699-5b20fd180cefn%40googlegroups.com.


Waiting for STANDARD ACCESS and yet no response

2024-04-12 Thread Alexandre Vieira
Hi, 
I'm waiting on google team to get a response related to the request of my 
standard acces for the given account:

MCC:  889-774-7250
CASE ID: no case ID yet

Thanks, Alex

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/742a500d-1286-41d8-bce6-366478752811n%40googlegroups.com.


Metric metrics.view_through_conversions_from_location_asset_store_visits incompatible with segments.date

2024-04-12 Thread 'Olivier B' via Google Ads API and AdWords API Forum
Hello Google Team,

We need to retrieve the following metric :
*metrics.view_through_conversions_from_location_asset_store_visits*

According to the docs, it's possible through campaign or customer but 
calling the API returns an *Invalid argument error*. Query builders also 
mention that *this metric is incompatible with any segments, especially 
segments.date* as we need this metrics per date.

For example :

*SELECT metrics.view_through_conversions_from_location_asset_store_visits 
FROM campaign*

*SELECT metrics.view_through_conversions_from_location_asset_store_visits 
FROM campaign*

Please, can you confirm if it's possible to retrieve this metric on a per 
date basis ?

Best regards,
Olivier B.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/3a2c5708-ccf9-40ea-a47b-d05f2a8af7ban%40googlegroups.com.


generating refresh token

2024-04-12 Thread ofir sabag

I'm attempting to connect to the Google Ads API using a C# library, but I'm 
struggling to understand how to generate an OAuth2 refresh token. I've read 
the documentation, which suggests using oauth2l, but I haven't been able to 
install it on my computer. Is there an alternative method to generate the 
refresh token?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/47cc4280-aaa5-4902-b30c-71c5d2a9d499n%40googlegroups.com.


Re: changes failed to save error

2024-04-12 Thread Brigitta Tuboly
Hi Google Ads API Team, 

Thank you for your quick response. Your Google Ad Representative just 
contacted us and  asked us to schedule a phone call with her. 

Again, many thanks!
Brigitta 

Google Ads API Forum Advisor a következőt írta (2024. április 10., szerda, 
19:59:45 UTC+2):

> Hi,
>
> Thank you for reaching out to the Google Ads API support team.
>
> Could you please provide us with the Customer ID so that we can route you 
> to the appropriate team for further assistance. Kindly note that we are not 
> the correct team to look into Google Ads UI related issues.
>
> You can send the details via *Reply privately to the author option* or a 
> *direct 
> private reply* to this email.
>
>  This message is in relation to case 
> "ref:!00D1U01174p.!5004Q02tOzPv:ref" (ADR-00230578) 
>
> Thanks,
>   
> [image: Google Logo] Google Ads 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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/6dcbf180-1781-442b-9a9c-992e11f2b515n%40googlegroups.com.


User Permission Denied Error

2024-04-12 Thread 'Jeremy Prestidge' via Google Ads API and AdWords API Forum
Hello, we're getting a user permission denied error, even though we're 
correctly including the login-customer-id and linked-customer-id in the 
headers.

I can provide the logs privately if someone can please review this?

Jeremy

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/1883266b-dca4-4fa8-a751-163050c74855n%40googlegroups.com.


Google Ads API - Basic Access level

2024-04-12 Thread Danil Minakov
Hello, we applied for basic access over a week ago and never received a 
response.
We also sent a request to Google Ads API Compliance regarding this issue, 
but to no avail.
Google Ads manager account (MCC) ID: 658-625-2833

Please help to resolve this issue. 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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/0d185f37-6496-4f3c-affd-92c595244303n%40googlegroups.com.


Re: no update from ads compliance team for standard_access request

2024-04-12 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi Aromal,

Thank you for providing us with the requested information.

++@Compliance team, please see the updated email from the user:

Google Ads Manager Account (MCC) ID:  3146617433
Case ID: 8-009634813

This message is in relation to case "ref:!00D1U01174p.!5004Q02tP1k6:ref" 
(ADR-00230798)

Thanks,

Google Ads 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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/MB8rx0SBUH8P00ZXWGvLPWQnCDmp3LsM1mPA%40sfdc.net.


RE: an error occurred while uploading adjustments

2024-04-12 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi,

Thank you for reaching out to the Google Ads API support team.

Upon checking the code, I noticed that you encountered the error 
'NO_CONVERSION_ACTION_FOUND' while adjusting the conversions. This error 
usually occurs when the conversion action specified in the upload request 
cannot be found. There are a few prerequisites that should be followed before 
adjusting the conversions. Make sure all of the prerequisites are satisfied 
before proceeding to implementation. Kindly refer to the document requirements 
for more information.

However, your issue remains unresolved, Please get back to us the complete API 
logs (request and response with request-id and request header) generated at 
your end so that we can check from our end and assist you further. For this, 
you have to enable logging if you are using a client library.

You can refer to the PHP guides to enable logging on your end. For REST 
interface requests, you can enable logging via the curl command by using the -i 
flag.

You can send the details via the Reply privately to the author option or a 
direct private reply to this email.

This message is in relation to case "ref:!00D1U01174p.!5004Q02tP3T9:ref" 
(ADR-00230878)

Thanks,

Google Ads 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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/3yCJr0SBUF1500dDqTkd1BRnaP2r4t90CAfA%40sfdc.net.


Re: about app campaigns conversion_cateogy

2024-04-12 Thread neo
correct the link: 

   - Conversion Action Category: https://developers.google.com/google-
   ads/api/rest/reference/rest/v14/ConversionActionCategory


On Saturday, April 13, 2024 at 3:33:16 AM UTC+9 neo wrote:

> Hello, 
>
> I'm looking for default conversion action category about conversions 
> tracked automatically  from Google Play without adding tracking code. 
> (Android apps)
>
> According to the link below, there are 3 conversions (Downloads/In-app 
> purchases/Pre-registrations) tracks automatically.
>
>- 
>
> https://support.google.com/google-ads/answer/6100665?hl=en=790528580305756176-AP#web2app
>
>
> But, I can not find comments about conversions and conversion action 
> category matching.
>
>- Conversion Action Category: https://developers.google.com/google-
>- ads/api/rest/reference/rest/v14/ConversionActionCategory
>
> This is my guess. is this right?
> ex) 
>  *-- conversions>  conversion action category*
>  Downloads  >  DOWNLOAD
>  In-app purchase >  PURCHASE
>  Pre-registrations > DOWNLOAD
>
>
> 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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/75064f18-a9ca-4d31-ae0e-c7f3fa33784bn%40googlegroups.com.


about app campaigns conversion_cateogy

2024-04-12 Thread neo
Hello, 

I'm looking for default conversion action category about conversions 
tracked automatically  from Google Play without adding tracking code. 
(Android apps)

According to the link below, there are 3 conversions (Downloads/In-app 
purchases/Pre-registrations) tracks automatically.

   - 
   
https://support.google.com/google-ads/answer/6100665?hl=en=790528580305756176-AP#web2app


But, I can not find comments about conversions and conversion action 
category matching.

   - Conversion Action Category: https://developers.google.com/google-
   - ads/api/rest/reference/rest/v14/ConversionActionCategory
   
This is my guess. is this right?
ex) 
 *-- conversions>  conversion action category*
 Downloads  >  DOWNLOAD
 In-app purchase >  PURCHASE
 Pre-registrations > DOWNLOAD


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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/5655eb45-75fd-4c55-b707-838dfc0f4e87n%40googlegroups.com.


Standard Access API, No Reponse

2024-04-12 Thread Phu Nguyen
Hello, we also haven't received any response from the compliance team, it's 
been several weeks now. We've applied for Standard Access.

   - Case ID: No case ID
   - MCC ID: 108-682-0946

One of our clients has also followed up with their own Google rep, but no 
word yet.

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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/b9a82ec4-71f2-4685-91d7-22fec83024a5n%40googlegroups.com.


Re: collab: basic access level waiting time - how long you've been waiting?

2024-04-12 Thread Hoang Ho
For me, I have waiting 1.5 months without receiving any feedback. Just an 
email cced other team to investigate. And leave me alone.

So now, I have to spam all email thread like this thread to ask about my 
case 

My mcc: 652-337-8886 

This is the first time, I saw one Google working very slow like this. Even 
I submitted at least 5 times to this form 
https://support.google.com/adspolicy/contact/contact_ads_api  

Thanks

On Wednesday, April 3, 2024 at 12:27:07 AM UTC+7 Google Ads API Forum 
Advisor wrote:

> Hello All,
>
> The members of my Google Ads API team have heard from our API developers 
> about the developer token approval wait time being longer than usual, and 
> we’ve escalated this problem. My team agrees with you that this wait time 
> is quite stressful and needs to be addressed. The API Compliance team is 
> working on multiple solutions to improve the situation, and I’m working to 
> push these solutions along faster. 
>
> In the meantime, if you haven't reached out on 
> https://support.google.com/adspolicy/contact/contact_ads_api and chosen 
> 'I'm waiting to hear back about my API application! Help!', then please do 
> so. I’ve heard from multiple API developers that this can help move an 
> application along. That’s the best option right now rather than pinging 
> this thread.
>
> Thanks for sharing your concerns,
>   
> This message is in relation to case 
> "ref:!00D1U01174p.!5004Q02tOn73:ref" (ADR-00229597)
>
>   
> [image: Google Logo] 
> Nadine Wang 
> Google Ads 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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/1d2450e1-be8b-46fc-8809-44f9edf7a1fen%40googlegroups.com.


No Response for Basic API Access

2024-04-12 Thread Kevin Jones
I submitted a request for Basic API Access a while ago and have not heard 
anything back. I did not receive a confirmation email or Case ID. This is 
holding up the roll out of our app. Can someone on the google team look 
into this?

MCC: 511-736-0527

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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/ffd6ff6e-3d09-4b92-b5f0-ed6de3d3d043n%40googlegroups.com.


No response for Basic API Access

2024-04-12 Thread Kevin Jones
I requested Basic API Access a while ago and haven't heard anything back. I 
did not receive a confirmation email or case ID. This is holding up the 
rollout of our app. Can someone on the google team look into this?

MCC: 511-736-0527

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/070fe56e-1f0a-4f20-a39b-6ad21b0db612n%40googlegroups.com.


Re: basic token application

2024-04-12 Thread Relentless Digital
The compliance team still has not responded and we want to get rolling with 
the API.

On Thursday, April 4, 2024 at 3:00:20 AM UTC-6 Google Ads API Forum Advisor 
wrote:

> Hi,
>
> Thank you for reaching out to the Google Ads API support team.
>
> I notice that you've already raised this concern in another thread titled 
> 'No response from Google Ads API Token Application'. We've already provided 
> a response there regarding this issue. To streamline communication and 
> avoid redundancy, please refer back to that thread for any updates or 
> further discussions on this topic. ​ ​ ​ ​ ​
>   
> This message is in relation to case 
> "ref:!00D1U01174p.!5004Q02tOqyw:ref" (ADR-00229910)
>
>
> Thanks,
>   
> [image: Google Logo] Google Ads 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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/d4e45779-456a-40a9-8852-d2a474500d8en%40googlegroups.com.


Re: update on basic level access

2024-04-12 Thread Josh Noren
I never received a case ID

On Wednesday, April 10, 2024 at 1:47:14 AM UTC-4 Google Ads API Forum 
Advisor wrote:

> Hi,
>
> Thank you for reaching out to the Google Ads API support team.
>
> By reviewing your concern, I understand that you have submitted an 
> application for the basic access of Google Ads API developer token and have 
> not received any update.
>
> Since the access requests are handled by the Google Ads API Compliance 
> team, we are transferring the case to the Ads API Compliance team. Can you 
> kindly provide the following information for the compliance team to further 
> assist you with your concern: 
>
>- Case ID generated from the compliance team in the format 
>0-0###0 (if there is any generated) 
>
> @Compliance team, please confirm if you are able to assist in the below 
> access request and the user did not receive the Case Id.
>
> Summary: The user has applied for the basic access with the below details. 
>
>- Google Ads Manager Account (MCC) ID: 785-402-8992 <(785)%20402-8992> 
>- Cases ID: requested  
>
> Do reach out to the Google Ads API 
>  support team 
> for any queries related to the API.
>   
> This message is in relation to case 
> "ref:!00D1U01174p.!5004Q02tOzPl:ref" (ADR-00230576)
>
> Thanks,
>   
> [image: Google Logo] Google Ads API Team 
>
>
>
-- 
This email, and any files transmitted with it, is
confidential information 
intended only for the use of the individual or entity
named above. If the 
reader of this message is not the intended recipient or the
employee or 
agent responsible to deliver it to the intended recipient, you are
hereby 
notified that any dissemination, distribution, or copying of this
communication is strictly prohibited. If you have received this 
communication
in error, please immediately notify the sender by return 
e-mail and delete the
original message.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/552b7a25-b65d-40ac-872e-23c6c1f28e54n%40googlegroups.com.


RE: request api standard access

2024-04-12 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi,

Thank you for reaching out to the Google Ads API support team.

Since the access requests are handled by the Google Ads API Compliance team, we 
are transferring the case to the Ads API Compliance team.

@Compliance team, please confirm if you are able to assist in the below access 
request.

Summary:

The user has applied for the standard access with the below details.

Google Ads Manager Account (MCC) ID:  108-682-0946
Cases ID: User says that no case ID

Do reach out to the Google Ads API support team for any queries related to the 
API.
This message is in relation to case "ref:!00D1U01174p.!5004Q02tP3s9:ref" 
(ADR-00230954)

Thanks,

Google Ads 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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/eZiqg0SBTZW900m_9pRuwBRuSw9O1vfhkMaQ%40sfdc.net.


Request API Standard Access

2024-04-12 Thread Phu Nguyen
Hello, we haven't received any response from the compliance team, it's been 
several weeks now. We've applied for Standard Access.

   - Case ID: No case ID
   - MCC ID: *108-682-0946*

One of our clients has also followed up with their own Google rep, but no 
word yet.

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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/a51dab5c-0771-4b54-ae49-fc61fc4b13a4n%40googlegroups.com.


RE: basic access application — no response from compliance

2024-04-12 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi,

Thank you for reaching out to the Google Ads API support team.

Since the access requests are handled by the Google Ads API Compliance team, we 
are transferring the case to the Ads API Compliance team. Can you kindly 
provide the following information for the compliance team to further assist you 
with your concern:

Case ID generated from the compliance team in the format 0-0###0 (if 
there is any generated)

@Compliance team, please confirm if you are able to assist in the below access 
request.

Summary:

The user has applied for the basic access with the below details.

Google Ads Manager Account (MCC) ID:  797-639-6619
Cases ID: requested

Do reach out to the Google Ads API support team for any queries related to the 
API.
This message is in relation to case "ref:!00D1U01174p.!5004Q02tP3di:ref" 
(ADR-00230919)

Thanks,

Google Ads 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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/v9ENC0SBTN0W00luT4vVmCSpC5peWZhlb6iw%40sfdc.net.


Basic Access Application — No Response from Compliance

2024-04-12 Thread Matthew Bélair
Hi team,

We have also filed a request for Basic Access weeks ago, with no response 
from Google Ads. We have received no confirmation or case number. It would 
be nice to hear back to know that I don't need to send the request again.

MCC associated with the request: 797-639-6619.

I know you're filled these messages, but unfortunately every possible 
resource points to this group... Hopefully you can help!

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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/890daec5-fb6e-4cd1-877d-86ccc1f08145n%40googlegroups.com.


Issues of enhancement conversion

2024-04-12 Thread Eric Xu
Hello teams, after many times tried, our api upload enhancement conversion 
still not work.
I will share my code demo & response below, if u need more details ,pls 
reply:

Code:
import hashlib
import logging
from google.ads.googleads.client import GoogleAdsClient

logging.basicConfig(level=logging.DEBUG, format='[%(asctime)s - 
%(levelname)s] %(message).5000s')
logging.getLogger('google.ads.googleads.client').setLevel(logging.DEBUG)


def normalize_and_hash(s):
return hashlib.sha256(s.strip().lower().encode()).hexdigest()


# 初始化client
client = GoogleAdsClient.load_from_storage(
"/Users/eric/PycharmProjects/google_ads/google-ads.yaml")

# Constructs the enhancement adjustment.
conversion_adjustment = client.get_type("ConversionAdjustment")
conversion_adjustment.adjustment_type = (
client.enums.ConversionAdjustmentTypeEnum.ENHANCEMENT
)

# add phone
phone_identifier = client.get_type("UserIdentifier")
phone_identifier.hashed_phone_number = normalize_and_hash("+919820703373")
conversion_adjustment.user_identifiers.append(phone_identifier)

# add order_id
conversion_adjustment.order_id = "37656781"

# add gclid & conversion_date_time
conversion_adjustment.gclid_date_time_pair.conversion_date_time = "2024-04-12 
15:07:12+08:00"
conversion_adjustment.gclid_date_time_pair.gclid = 
"CjwKCAjwt-OwBhBnEiwAgwzrUui8sK_o-3d-GO_u4VuC9Gzr6wUk_dXJKi-m9uMf2DbXLYMgfCqpDhoChN4QAvD_BwE"

# find conversion action
conversion_action_service = client.get_service("ConversionActionService")
conversion_adjustment.conversion_action = 
(conversion_action_service.conversion_action_path(7514302876, 6731257876))

# Creates the conversion adjustment upload service client.
conversion_adjustment_upload_service = client.get_service(
"ConversionAdjustmentUploadService")

response = 
conversion_adjustment_upload_service.upload_conversion_adjustments(
customer_id="7514302876",
conversion_adjustments=[conversion_adjustment],
partial_failure=True,
)

Response:
[2024-04-12 15:29:05,999 - DEBUG] Making request: POST 
https://accounts.google.com/o/oauth2/token
[2024-04-12 15:29:06,006 - DEBUG] Starting new HTTPS connection (1): 
accounts.google.com:443
[2024-04-12 15:29:07,037 - DEBUG] https://accounts.google.com:443 "POST 
/o/oauth2/token HTTP/1.1" 200 None
[2024-04-12 15:29:08,940 - DEBUG] Request
---
Method: 
/google.ads.googleads.v16.services.ConversionAdjustmentUploadService/UploadConversionAdjustments
Host: googleads.googleapis.com
Headers: {
  "developer-token": "REDACTED",
  "login-customer-id": "7514302876",
  "x-goog-api-client": "gl-python/3.9.6 grpc/1.62.0 gax/2.17.1 gccl/23.1.0 
pb/4.25.3",
  "x-goog-request-params": "customer_id=7514302876"
}
Request: customer_id: "7514302876"
conversion_adjustments {
  gclid_date_time_pair {
gclid: 
"CjwKCAjwt-OwBhBnEiwAgwzrUui8sK_o-3d-GO_u4VuC9Gzr6wUk_dXJKi-m9uMf2DbXLYMgfCqpDhoChN4QAvD_BwE"
conversion_date_time: "2024-04-12 15:07:12+08:00"
  }
  order_id: "37656781"
  conversion_action: "customers/7514302876/conversionActions/6731257876"
  adjustment_type: ENHANCEMENT
  user_identifiers {
hashed_phone_number: 
"95a6ed9f3d36ed8b892fbd689818489f63535fb3de0529e94570a8366b1355b5"
  }
}
partial_failure: true


Response
---
Headers: {
  "alt-svc": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000",
  "content-disposition": "attachment",
  "date": "Fri, 12 Apr 2024 07:29:08 GMT",
  "request-id": "3RvYVBDBP6zMlpX5VhCodg"
}
Response: partial_failure_error {
  code: 3
  message: "Can\'t use enhanced conversions with the specified conversion 
action., at conversion_adjustments[0].conversion_action"
  details {
type_url: 
"type.googleapis.com/google.ads.googleads.v16.errors.GoogleAdsFailure"
value: "\n\263\001\n\003\230\007\020\022DCan\'t use enhanced 
conversions with the specified conversion 
action.\0323*1customers/7514302876/conversionActions/6731257876\"1\022\032\n\026conversion_adjustments\030\000\022\023\n\021conversion_action"
  }
}
results {
}
job_id: 8562845044805615846


[2024-04-12 15:29:08,941 - INFO] Request made: ClientCustomerId: 
7514302876, Host: googleads.googleapis.com, Method: 
/google.ads.googleads.v16.services.ConversionAdjustmentUploadService/UploadConversionAdjustments,
 
RequestId: 3RvYVBDBP6zMlpX5VhCodg, IsFault: False, FaultMessage: None


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, 

Re: no update from ads compliance team for standard_access request

2024-04-12 Thread Aromal S
Google Ads Manager Account (MCC) ID:  3146617433 
Case ID: 8-009634813
On Friday 12 April 2024 at 09:16:29 UTC+5:30 Google Ads API Forum Advisor 
wrote:

> Hi Aromal,
>
> Thank you for reaching out to the Google Ads API support team.
>
> After reviewing your concern, I understand that you have submitted an 
> application for the standard access and have not received any update 
> regarding the approval of this application.
>
> Since the access requests are handled by the Google Ads API Compliance 
> team we are transferring the case to the Ads API Compliance team. Can you 
> kindly provide the following information for the compliance team to further 
> assist you with your concern: 
>
>- Google Ads Manager Account (MCC) ID 
>
> @Compliance team, Please confirm if you are able to assist in the below 
> access request.
>
> Summary: The user has applied for standard access with the below details 
> .  
>
>- Google Ads Manager Account (MCC) ID:  requested  
>- Case ID: 8-009634813 
>
> Do reach out to the *Google Ads API* 
>  support team 
> for any queries related to the API.
>
>   
> This message is in relation to case 
> "ref:!00D1U01174p.!5004Q02tP1k6:ref" (ADR-00230798)
>
> Thanks,
>   
> [image: Google Logo] Google Ads 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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/9b824a90-ad1e-4032-8200-dc3bc18f19dcn%40googlegroups.com.