Re: can't use enhanced conversions with the specified conversion action

2024-02-27 Thread Eric Xu
[2024-02-28 12:07:18,570 - DEBUG] Making request: POST 
https://accounts.google.com/o/oauth2/token
[2024-02-28 12:07:18,577 - DEBUG] Starting new HTTPS connection (1): 
accounts.google.com:443
[2024-02-28 12:07:19,587 - DEBUG] https://accounts.google.com:443 "POST 
/o/oauth2/token HTTP/1.1" 200 None
[2024-02-28 12:07:20,984 - 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=6619459227"
}
Request: customer_id: "6619459227"
conversion_adjustments {
  gclid_date_time_pair {
gclid: 
"CjwKCAiArfauBhApEiwAeoB7qNCR4mLmZcNNAh5NZNsUfJw6nrhLX3Vi1V2Xoh5VMS7epRSYHxrYqxoCSE0QAvD_BwE"
conversion_date_time: "2024-02-28 02:14:46+08:00"
  }
  order_id: "35965315"
  conversion_action: "customers/6619459227/conversionActions/6731257876"
  adjustment_type: ENHANCEMENT
  user_identifiers {
hashed_phone_number: 
"976f3dfef1b4dbdd9d6c383cf84fd770ead9f75f68193278f200b54b23a71193"
  }
}
partial_failure: true


Response
---
Headers: {
  "alt-svc": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000",
  "content-disposition": "attachment",
  "date": "Wed, 28 Feb 2024 04:07:20 GMT",
  "request-id": "-CYvfbOlc_ilP3_pTQrMJg"
}
Response: partial_failure_error {
  code: 3
  message: "The conversion action specified in the adjustment request 
cannot be found. Make sure it\'s available in this account., at 
conversion_adjustments[0].conversion_action"
  details {
type_url: 
"type.googleapis.com/google.ads.googleads.v16.errors.GoogleAdsFailure"
value: "\n\343\001\n\003\230\007\033\022tThe conversion action 
specified in the adjustment request cannot be found. Make sure it\'s 
available in this 
account.\0323*1customers/6619459227/conversionActions/6731257876\"1\022\032\n\026conversion_adjustments\030\000\022\023\n\021conversion_action"
  }
}
results {
}
job_id: 6344808759152426919


[2024-02-28 12:07:20,985 - INFO] Request made: ClientCustomerId: 
6619459227, Host: googleads.googleapis.com, Method: 
/google.ads.googleads.v16.services.ConversionAdjustmentUploadService/UploadConversionAdjustments,
 
RequestId: -CYvfbOlc_ilP3_pTQrMJg, IsFault: False, FaultMessage: None

在2024年2月27日星期二 UTC+8 23:58:14 写道:

> Hi,
>
> Thank you for getting back to us.
>
> Upon checking the provided logs, I could see that you are still getting an 
> error "The conversion action specified in the adjustment request cannot be 
> found. Make sure it's available in this account." Also, I could see that 
> you have only provided the method, customer ID and request ID. In order to 
> investigate the issue further, provide us with the updated complete API 
> logs (request 
> 
>  and response 
> 
>  and request header 
> )
>  
> generated at your end.
>
>
> If you are using a client library and haven't enabled the logging yet, I 
> would request you to enable logging for the specific client library that 
> you are using. You can refer to the guides Java 
> 
> , .Net 
> 
> , PHP 
> 
> , Python 
> 
> , Ruby 
> 
>  or Perl 
>  
> to 
> enable logging at your end. For REST interface requests, you can enable 
> logging via the curl command by using the -i flag.
>
>   
> This message is in relation to case "ref:!00D1U01174p.!5004Q02rzJ8s:ref"
>
> 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 

PMax Listing Group Status Found Via API Not Matching Account UI

2024-02-27 Thread Reid Hommedahl
Hi there, 

I've created a script that fetches the status of a listing group from our 
PMax campaign, and the API response is saying that 
the asset_group_listing_group_filter, type_ is "UNIT_INCLUDED". However, in 
the browser, I can see that the listing group is not included, and it's 
actually excluded. 

The campaign IDs match, but it seems like the asset group IDs are different 
that what's showing in the browser versus what the asset group resource 
name is that is being pulled in from the API.

Here's the query I'm using to gather the listing group status, or "type_" :

query = f"""
SELECT
asset_group.name,
asset_group.resource_name,
asset_group_listing_group_filter.resource_name,
asset_group_listing_group_filter.type
FROM asset_group_product_group_view
WHERE campaign.id = {campaign_id}
AND 
asset_group_listing_group_filter.case_value.product_item_id.value = 
'{product_id}'
AND asset_group.resource_name NOT IN ('{resource_name}')
LIMIT 1
"""

The response from this query is the following:

SearchPager

As you can see in the type_ field, the status says "UNIT_INCLUDED". 
However, when I check the browser, this listing group, within this 
particular campaign and asset group, shows that it is actually *excluded*. 
I understand my query is excluding an asset group, but that's on 
purpose. I'm pulling metrics for this listing group via the API, and the 
metrics match the browser *exactly*, but for some reason *the status does 
not match. *

One weird finding is that the asset group resource name listed above in the 
response, shows that the asset group ID should be "6476690481", and the 
entire asset group resource name is 
"customers/9084369246/assetGroups/6476690481". Within the browser, the 
asset group ID does not match what was provided in the response (see photo 
for the MDR asset group). In fact, we have no asset group ID that is 
"6476690481" within our entire account. 

Any ideas why this might be happening? Why do the metrics match exactly, 
but the status does not match what is showing in the browser? I understand 
the data can lag a bit, but no changes have been made in the browser, and 
I've checked again over a period of several days. 


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/050aff83-66a6-4db1-83e8-8e81acdb1d4an%40googlegroups.com.


Re: to get the basic access of the google ads developer token.

2024-02-27 Thread Sterling Sky
I never received the autogenerated email.  That's why I don't have a case 
ID!

On Tuesday, February 27, 2024 at 2:44:04 PM UTC-7 Google Ads API Forum 
Advisor wrote:

> Hi,
>
> Thank you for getting back to us.
>
> I would like to inform you that the Case ID will be present in the auto 
> generated email from the compliance team after submitting the application 
> form. 
>
> @Compliance team, please confirm if you are able to assist in the below 
> access request.
>
> Summary:
>
> The user has applied for the access with the below details. 
>
>
>
>- Google Ads Manager Account (MCC) ID: 496-613-0250.   
>
>
>- Case ID : User says that they never received an email. 
>- Access level :  Basic access 
>
> 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.!5004Q02rzTdk:ref"
>
> 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/4ba36723-2fed-4b76-855c-12c8eddf6c86n%40googlegroups.com.


Re: to get the basic access of the google ads developer token.

2024-02-27 Thread Sterling Sky
I never received an email and want to know how to provide the case number.  
Can you help me with that?

On Tuesday, February 27, 2024 at 11:57:18 AM UTC-7 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
>
> Summary: The user has applied for the basic access with the below details. 
>
>- Google Ads Manager Account (MCC) ID:  496-613-0250.   
>- Case 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.!5004Q02rzTdk:ref"
>
> 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/2e533040-5351-4676-8216-84543433e6ben%40googlegroups.com.


Re: waiting on google ads api basica access approval

2024-02-27 Thread Sigrid Gehrig
Google @Compliance team,

Continuing on from the conversation below... .We did not get a case id when we 
submitted the request for Google Ads Basic API Access. Once we submitted the 
application,  it just showed that the message was received and the team will 
review and respond in 3 days. It's been more than a week now and Our API Access 
is still at the test level. WE have some   urgency (deadlines) around this and 
would like to get to the Basic level as soon as it is possible.  Please let us 
know if you need anything else from as at all to speed up this process.

Thank you!

Sigrid Gehrig

I have provided our ads manager account ID and developer token below if that 
helps at all.

  *
Google Ads Manager Account (MCC) ID: 354-676-6688
  *
Developer token: ISf736x3EQzTpNJp2Y8vRg





From: Google Ads API Forum Advisor 
Sent: Tuesday, February 27, 2024 1:48 PM
To: Sigrid Gehrig ; 
ads-api-compliance-trans...@google.com 
Cc: adwords-api@googlegroups.com 
Subject: RE: waiting on google ads api basica access approval

Hi,

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

After reviewing your concern, I understand that you have applied for API basic 
access and you haven't received any updates on your application status.

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 API access with the below details.

  *   Google Ads Manager Account (MCC) ID: 354-676-6688
  *   Case 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.!5004Q02rzUli:ref"

Thanks,

[Google Logo]
Google Ads API Team
[https://google-dev-relations.my.salesforce.com/servlet/servlet.ImageServer?oid=00D1U01174p=0184Q1OiQIk=ext]

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/DM6PR06MB46986E1FA461E0A5C4ED7BCFEB592%40DM6PR06MB4698.namprd06.prod.outlook.com.


What is wrong with my code?

2024-02-27 Thread David Scott
$command = qq(curl -i -X POST \\
  
"https://googleads.googleapis.com/v16/customers/$Certified_Santee/adGroupAds:mutate;
 
\\
  --header "Content-Type: application/json" \\
  --header "developer-token: $developer_token" \\
  --header "Authorization: Bearer $access_token" \\
  --data '
{
  "operations": 
  [
"adGroupAdOperation": 
{
  "create": 
  {
"adGroup": 
"customers/$Certified_Santee/adGroupAds/$Santee_SSA4_Transmission",
"status": "PAUSED",
"ad":
{
  "expandedTextAd":
  {
"headlines": 
[
  {
"pinnedField": "HEADLINE_1",
"text": "1985 Alfa Romeo Spider"
  },
  {
"text": "Alfa Romeo Spider transmission"
  },
  {
"text": "Alfa Romeo transmissions"
  }
],

"descriptions": 
[
  {
"text": "Our experts are Alfa Romeo specialists. Many 
reman transmissions in stock."
  }, 
  {
"text": "Certified Transmission Santee is a full Alfa 
Romeo transmission diagnostic center."
  } 
], 
"displayUrl": 
"$domain/ls_1985_Alfa_Romeo_Spider-transmission.shtml"
  }
}
  }
}
  ] 
}

');

@result = qx{$command};
print "@result\n";

Result:
{
   "error": {
 "code": 400,
 "message": "Invalid JSON payload received. Expected , or ] after array 
value.\n\"adGroupAdOperation\": \n[\n   \n   
 ^",
 "status": "INVALID_ARGUMENT"
   }
 }

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/8d1ad07d-4a14-48c1-9e4f-c17c422b41c7n%40googlegroups.com.


DEVELOPER_TOKEN_PROHIBITED

2024-02-27 Thread Nimisha Mahajan
Hello Team,

I am getting the below error  as DEVELOPER_TOKEN_PROHIBITED.
I also created a new project as mentioned in other group messages 
but then also I got the same error, 
Can you please help and check at earliest?
  

POST /v14/customers//googleAds:search HTTP/1.1 Host: 
googleads.googleapis.com Developer-token:  Content-length: 
208 Content-type: application/json Authorization: Bearer 
ya29.a0AfB_byA75Cs7IQBrhThl-HlynVdefdECFVYNk3SBhDLaXIC7FceCnA3iquyMz7hlULyxSaXj5Xwm8o5RqFjQfK6pI-j73qmsQIlcm6imgWbr2qIg9rmCmZ26MPX18ZYz8SNPM-kVHXEJaRKSgO7FernWY40APStBTDG7aCgYKAXwSARESFQHGX2MiDo3Bv0aGW_-niBwhYL7ZpA0171
{"query": "SELECT segments.date, campaign.name, metrics.impressions, 
metrics.search_impression_share, metrics.average_cpc, metrics.ctr FROM 
campaign WHERE segments.date BETWEEN '2024-01-01' AND '2024-01-05'"}HTTP/1.1 
403 Forbidden Content-length: 548 X-xss-protection: 0 
X-content-type-options: nosniff Transfer-encoding: chunked Request-id: 
yek0biuXQCu91hsTMZQUow Vary: Origin, X-Origin, Referer Server: ESF 
-content-encoding: gzip Cache-control: private Date: Tue, 27 Feb 2024 
18:13:33 GMT X-frame-options: SAMEORIGIN Alt-svc: h3=":443"; 
ma=2592000,h3-29=":443"; ma=2592000 Content-type: application/json; 
charset=UTF-8{
  "error": {
"status": "PERMISSION_DENIED",
"message": "The caller does not have permission",
"code": 403,
"details": [
  {
"errors": [
  {
"errorCode": {
  "authorizationError": "DEVELOPER_TOKEN_PROHIBITED"
},
"message": "Developer token is not allowed with project 
."
  }
],
"@type": "
type.googleapis.com/google.ads.googleads.v14.errors.GoogleAdsFailure",
"requestId": "yek0biuXQCu91hsTMZQUow"
  }
]
  }
}

Thanks
Nimisha
Reply all
Reply to author
Forward

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/ff96bcc6-ef66-48fe-90c3-5275164bfd79n%40googlegroups.com.


DEVELOPER_TOKEN_PROHIBITED

2024-02-27 Thread Nimisha Mahajan
Hello Team,

I am getting the below error  as DEVELOPER_TOKEN_PROHIBITED.
I also created a new project as mentioned in other group messages 
but then also I got the same error, 
Can you please help and check at earliest?
  

POST /v14/customers/5611258525/googleAds:search HTTP/1.1 Host: 
googleads.googleapis.com Developer-token: a-NrEOGuTPgWN07HmSjlmw 
Content-length: 208 Content-type: application/json Authorization: Bearer 
ya29.a0AfB_byA75Cs7IQBrhThl-HlynVdefdECFVYNk3SBhDLaXIC7FceCnA3iquyMz7hlULyxSaXj5Xwm8o5RqFjQfK6pI-j73qmsQIlcm6imgWbr2qIg9rmCmZ26MPX18ZYz8SNPM-kVHXEJaRKSgO7FernWY40APStBTDG7aCgYKAXwSARESFQHGX2MiDo3Bv0aGW_-niBwhYL7ZpA0171
{"query": "SELECT segments.date, campaign.name, metrics.impressions, 
metrics.search_impression_share, metrics.average_cpc, metrics.ctr FROM 
campaign WHERE segments.date BETWEEN '2024-01-01' AND '2024-01-05'"}HTTP/1.1 
403 Forbidden Content-length: 548 X-xss-protection: 0 
X-content-type-options: nosniff Transfer-encoding: chunked Request-id: 
yek0biuXQCu91hsTMZQUow Vary: Origin, X-Origin, Referer Server: ESF 
-content-encoding: gzip Cache-control: private Date: Tue, 27 Feb 2024 
18:13:33 GMT X-frame-options: SAMEORIGIN Alt-svc: h3=":443"; 
ma=2592000,h3-29=":443"; ma=2592000 Content-type: application/json; 
charset=UTF-8{
  "error": {
"status": "PERMISSION_DENIED", 
"message": "The caller does not have permission", 
"code": 403, 
"details": [
  {
"errors": [
  {
"errorCode": {
  "authorizationError": "DEVELOPER_TOKEN_PROHIBITED"
}, 
"message": "Developer token is not allowed with project 
'407408718192'."
  }
], 
"@type": 
"type.googleapis.com/google.ads.googleads.v14.errors.GoogleAdsFailure", 
"requestId": "yek0biuXQCu91hsTMZQUow"
  }
]
  }
}

Thanks
Nimisha

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/c35332cd-f903-4473-933d-57bac6f98bf3n%40googlegroups.com.


waiting on Google Ads API Basica Access approval

2024-02-27 Thread sigrid gehrig
I have submitted an application for the Basic access of Google Ads API 
developer token and have not received any update.
Please help.  I do not have a case number but the account number is 
354-676-6688
Thank you!

Sigrid Gehrig
Edtech Ventures
4047544917


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/cf0c4b7b-1c37-49d0-a6fb-263717897b93n%40googlegroups.com.


Re: to get the basic access of the google ads developer token.

2024-02-27 Thread Sterling Sky
I applied for the basic token in late Decmber early January, followed up 
three times with the support form 
at https://support.google.com/adspolicy/contact/contact_ads_api and also 
have received no response at all. I know our technical diagram was high 
quality and don't understand why we haven't been approved yet.

Our MCC is 496-613-0250.  

On Tuesday, February 27, 2024 at 7:15:47 AM UTC-7 Dmitrii Bevz wrote:

> I have the same issue and I see that there are numerous threads with the 
> same issue in this group. How it can be fixed for all users?
> My Google Ads Manager Account (MCC) ID 623-027-2668
> I applied twice this month
> On Tuesday, February 27, 2024 at 12:32:39 PM UTC Google Ads API Forum 
> Advisor wrote:
>
>> Hi,
>>
>> Thank you for providing the additional information.
>>
>> @Compliance team, please confirm if you are able to assist in the below 
>> access request.
>>
>> Summary:
>>
>> The user has applied for the access with the below details.
>> Google Ads Manager Account (MCC) ID:  837-938-6113
>> Case ID : requested
>> Access level :  Basic access
>>
>>
>>   
>> This message is in relation to case "ref:!00D1U01174p.!5004Q02rzTdk:ref"
>>
>> 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/2f266a6e-76b8-4d42-8772-c89ebfd5a421n%40googlegroups.com.


Re: basic api access token

2024-02-27 Thread Tableau Admin
Hello,

I am still waiting to hear anything about this application.. Can you please 
help? We have not received any communication on the status of this request, 
it remains "In progress" for 2.5 months now.

On Monday, February 12, 2024 at 4:40:56 PM UTC-7 Google Ads API Forum 
Advisor wrote:

> Hi,
>
> Thank you for reaching out to the Google Ads API support team.
>
> After reviewing your concern, I understand that you've applied for the 
> basic access and haven't received a response. 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 basic access with the below details. 
>
>- Google Ads Manager Account (MCC) ID: 499-029-0839 
>- Cases ID: 7-116135377 
>
> 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.!5004Q02rz3Nr:ref"
>
> 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/45887b35-5718-4e44-9bf4-4fde16341b26n%40googlegroups.com.


Not getting standard access or any response

2024-02-27 Thread Dexter
Dear Team, 

I'm waiting now for 3-4 weeks on getting a response for the Google Ads API 
standard access for ID 408-997-8001. Can you please create a ticket and 
name a phone number where I can reach out to?

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/451eccb6-76e1-47de-af29-50082d1003a9n%40googlegroups.com.


Re: can't use enhanced conversions with the specified conversion action

2024-02-27 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi,

Thank you for getting back to us.

Upon checking the provided logs, I could see that you are still getting an 
error "The conversion action specified in the adjustment request cannot be 
found. Make sure it's available in this account." Also, I could see that you 
have only provided the method, customer ID and request ID. In order to 
investigate the issue further, provide us with the updated complete API logs 
(request and response and request header) generated at your end.

If you are using a client library and haven't enabled the logging yet, I would 
request you to enable logging for the specific client library that you are 
using. You can refer to the guides Java, .Net, PHP, Python, Ruby or Perl to 
enable logging at your end. For REST interface requests, you can enable logging 
via the curl command by using the -i flag.

This message is in relation to case "ref:!00D1U01174p.!5004Q02rzJ8s:ref"

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/clE220S9IV0C00BW4I3N0SSnCxrY40rNwGwg%40sfdc.net.


Internal (500) Error when requesting change data

2024-02-27 Thread Scott Vaillancourt
I'm trying to pull change data via the API and have been routinely 
encountering '500 Internal errors' for the past three weeks. This exact 
query has been running without issue for over 2 years. I've included the 
debug output for the request and response below. I realize there have been 
other similar issues logged and fixes were deployed, but they don't seem to 
have fully addressed the problem. Thanks.

Scott

[2024-02-27 08:59:32,396 - INFO] Request
---
Method: /google.ads.googleads.v15.services.GoogleAdsService/Search
Host: googleads.googleapis.com
Headers: {
  "developer-token": "REDACTED",
  "login-customer-id": "REDACTED",
  "x-goog-api-client": "gl-python/3.9.2 grpc/1.62.0 gax/2.17.1 gccl/23.0.0 
pb/4.25.3",
  "x-goog-request-params": "customer_id= REDACTED"
}
Request: customer_id: "REDACTED"
query: "\nSELECT\n  change_event.change_date_time,\n 
 change_event.change_resource_name,\n 
 change_event.change_resource_type,\n 
 change_event.resource_change_operation,\n  change_event.user_email,\n 
 change_event.changed_fields,\n  campaign.name\nFROM 
change_event\nWHERE\n  change_event.change_date_time BETWEEN 
\"2024-01-30\" AND \"2024-02-26\"\nLIMIT 2000"


Response
---
Headers: {
  "google.ads.googleads.v15.errors.googleadsfailure-bin": 
"\u0012\u0016fn2plGzwwkQEAGLMv5tx6g",
  "grpc-status-details-bin": "\b\r\u0012\u001bInternal error 
encountered.\u001a`\nDtype.googleapis.com/google.ads.googleads.v15.errors.GoogleAdsFailure\u0012\u0018\u0012\u0016fn2plGzwwkQEAGLMv5tx6g",
  "request-id": "fn2plGzwwkQEAGLMv5tx6g"
}
Fault: {}

[2024-02-27 08:59:32,397 - WARNING] Request made: ClientCustomerId: 
REDACTED, Host: googleads.googleapis.com, Method: 
/google.ads.googleads.v15.services.GoogleAdsService/Search, RequestId: 
fn2plGzwwkQEAGLMv5tx6g, IsFault: True, FaultMessage: Internal error 
encountered.
---
_InactiveRpcError Traceback (most recent call last)
File 
~/.local/lib/python3.9/site-packages/google/api_core/grpc_helpers.py:76, in 
_wrap_unary_errors..error_remapped_callable(*args, **kwargs)
 75 try:
---> 76 return callable_(*args, **kwargs)
 77 except grpc.RpcError as exc:

File ~/.local/lib/python3.9/site-packages/grpc/_interceptor.py:277, in 
_UnaryUnaryMultiCallable.__call__(self, request, timeout, metadata, 
credentials, wait_for_ready, compression)
268 def __call__(
269 self,
270 request: Any,
   (...)
275 compression: Optional[grpc.Compression] = None,
276 ) -> Any:
--> 277 response, ignored_call = self._with_call(
278 request,
279 timeout=timeout,
280 metadata=metadata,
281 credentials=credentials,
282 wait_for_ready=wait_for_ready,
283 compression=compression,
284 )
285 return response

File ~/.local/lib/python3.9/site-packages/grpc/_interceptor.py:332, in 
_UnaryUnaryMultiCallable._with_call(self, request, timeout, metadata, 
credentials, wait_for_ready, compression)
329 call = self._interceptor.intercept_unary_unary(
330 continuation, client_call_details, request
331 )
--> 332 return call.result(), call

File ~/.local/lib/python3.9/site-packages/grpc/_channel.py:439, in 
_InactiveRpcError.result(self, timeout)
438 """See grpc.Future.result."""
--> 439 raise self

File ~/.local/lib/python3.9/site-packages/grpc/_interceptor.py:315, in 
_UnaryUnaryMultiCallable._with_call..continuation(new_details, 
request)
314 try:
--> 315 response, call = self._thunk(new_method).with_call(
316 request,
317 timeout=new_timeout,
318 metadata=new_metadata,
319 credentials=new_credentials,
320 wait_for_ready=new_wait_for_ready,
321 compression=new_compression,
322 )
323 return _UnaryOutcome(response, call)

File ~/.local/lib/python3.9/site-packages/grpc/_interceptor.py:343, in 
_UnaryUnaryMultiCallable.with_call(self, request, timeout, metadata, 
credentials, wait_for_ready, compression)
334 def with_call(
335 self,
336 request: Any,
   (...)
341 compression: Optional[grpc.Compression] = None,
342 ) -> Tuple[Any, grpc.Call]:
--> 343 return self._with_call(
344 request,
345 timeout=timeout,
346 metadata=metadata,
347 credentials=credentials,
348 wait_for_ready=wait_for_ready,
349 compression=compression,
350 )

File ~/.local/lib/python3.9/site-packages/grpc/_interceptor.py:332, in 
_UnaryUnaryMultiCallable._with_call(self, request, timeout, metadata, 
credentials, wait_for_ready, compression)
329 call = self._interceptor.intercept_unary_unary(
330 continuation, client_call_details, request
331 )
--> 332 return call.result(), call

File 

Re: create customer match audience using rest interface

2024-02-27 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi,

Thank you for getting back to us.

I would suggest you follow customers.offlineUserDataJobs guide to perform an 
addOperation, create and run operation. You can use the 
customers.offlineUserDataJobs.addOperations endpoint to perform create, remove 
and removeAll operations. Hope this helps. Let us know if you have any further 
queries.
This message is in relation to case "ref:!00D1U01174p.!5004Q02CPseQ:ref"

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/lLDSi0S9IQZ400TCVG3ltcQ0KPQEciB893MA%40sfdc.net.


Re: looking for an identifer in the api to know if an invoice has been paid.

2024-02-27 Thread Michael Gioia
Thank you for the quick response.  Helps me confirm I am not missing 
anything.

On Tuesday, February 27, 2024 at 4:49:29 AM UTC-5 Google Ads API Forum 
Advisor wrote:

> Hi,
>
> Thank you for reaching out to the Google Ads API support team.
>
> After reviewing your query, I understand that you are looking for an 
> identifier in the Google Ads API to know if an invoice has been paid. 
>
> As of now, getting the PAID or UNPAID Invoice information via the Google 
> Ads API is not yet supported or not possible.
>   
> This message is in relation to case "ref:!00D1U01174p.!5004Q02rzSpa:ref"
>
> 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/52001b2e-605a-4ae0-bf42-fe6c75eae2f8n%40googlegroups.com.


RE: reach api

2024-02-27 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi Deepak,

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

By reviewing your query, I understand that you want to fetch reach at the 
campaign level and also how to fetch it on a daily, weekly, monthly, or 
lifetime basis. I would suggest referring to this link for more information on 
how to create a report for campaigns and this link for more information on how 
to use date ranges in the reports.

If this is not what you are looking for, I would request you to elaborate which 
data you want to fetch at the campaign level and provide us with the complete 
request and response, including the request-id and request header. 
Additionally, provide an uncropped screenshot with visible customer Id of 
Google Ads account (UI) data which you want to retrieve via API so that we can 
assist you better.

You can send the details via Reply privately to the author option, or direct 
private reply to this email.
This message is in relation to case "ref:!00D1U01174p.!5004Q02rzTdz:ref"

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/8DA9a0S9IP9000LPLQYtnVSvmuZs24szRnqw%40sfdc.net.


Re: basic access developer token requested near a month ago

2024-02-27 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi Paulo,

Thank you for getting back to us.

@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: 768-092-1031
Case ID: The user is saying that they don't have Case ID.

This message is in relation to case "ref:!00D1U01174p.!5004Q02rzSJA:ref"

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/XO4ze0S9ILSB00R2N-C7VbRRqkQzu5FWywqg%40sfdc.net.


Re: to get the basic access of the google ads developer token.

2024-02-27 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi,

Thank you for providing the additional information.

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

Summary:

The user has applied for the access with the below details.
Google Ads Manager Account (MCC) ID:  837-938-6113
Case ID : requested
Access level :  Basic access

This message is in relation to case "ref:!00D1U01174p.!5004Q02rzTdk:ref"

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/eirw-0S9ILHN00PPQN2g0KS--JTWTHLCrkvQ%40sfdc.net.


Re: basic access developer token requested near a month ago

2024-02-27 Thread Paulo
Hi everybody.

Please, do you have any updates?

Regards
Paulo

Em segunda-feira, 26 de fevereiro de 2024 às 14:48:42 UTC-3, Google Ads API 
Forum Advisor escreveu:

> Hi,
>
> Thank you for reaching out to the Google Ads API support team.
>
> After reviewing your concern, I understand that you have applied for API 
> basic access. 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 API access with the below details. 
>
>- Google Ads Manager Account (MCC) ID: 768-092-1031 
>- Case ID: The user is saying that they don't have Case ID. 
>- Access type: Basic 
>
> 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.!5004Q02rzSJA:ref"
>
> 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/9a7729fb-4273-41ed-89e9-d27e6bd403e3n%40googlegroups.com.


Re: to get the basic access of the google ads developer token.

2024-02-27 Thread Manish Goyal
Google Ads Manager Account (MCC) ID : 837-938-6113

On Tuesday, February 27, 2024 at 2:53:41 PM UTC+5:30 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.
>
> @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:  requested  
>- Cases ID: User says that they did not get any 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.!5004Q02rzTdk:ref"
>
> 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/82f8e897-c004-4dea-92d4-b2d6cf5dcef5n%40googlegroups.com.


Re: sync all campaigns of all relevant accounts.

2024-02-27 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi,

Thank you for getting back to us.

Kindly note that when making a request to the API entails a number of fixed 
costs, such as round-trip network latency, serialization and deserialization 
processing, and calls to back-end systems. To lessen the impact of these fixed 
costs and increase overall performance, most mutate methods in the API are 
designed to accept an array of operations. I would recommend you to check this 
guide Best Practices for more information.

This message is in relation to case "ref:!00D1U01174p.!5004Q02rzRIQ:ref"

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/3el2J0S9IJAJ00yhIaqfKOSfuh1jBCTbTcMQ%40sfdc.net.


Re: the standard access request has been in process for an extended period without a response

2024-02-27 Thread Anmol jain
Do not know from where to get case ID. i believe there isn't any generated 
yet


On Tuesday, February 27, 2024 at 4:26:04 PM UTC+5:30 Google Ads API Forum 
Advisor wrote:

> Hi,
>
> Thank you for getting back to us.
>
> After reviewing your concern, I understand that you have applied for 
> standard access but have not received any updates.
>
> 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 standard access with the below details. 
>
>- Google Ads Manager Account (MCC) ID: 983-980-6107 <(983)%20980-6107> 
>- 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.!5004Q02rzLlW:ref"
>
> 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/55d8c1b8-d161-4700-91a5-d10bfb00fd0en%40googlegroups.com.


Re: the standard access request has been in process for an extended period without a response

2024-02-27 Thread Anmol Jain
@Compliance team we are facing the same issue from a while now not getting 
any reply from any form I had filled. Please help here MCC id - 983-980-6107


On Tuesday, February 27, 2024 at 3:20:29 PM UTC+5:30 google-ads-api Creatio 
wrote:

> Hi there,
> Does it have any updates so far?
>
> On Monday, February 26, 2024 at 10:34:55 AM UTC+2 google-ads-api Creatio 
> wrote:
>
>> Hi @Compliance team,
>>
>> Could you provide an update on the progress of our requests? We would 
>> greatly appreciate a prompt decision as the existing limits are hindering 
>> us from utilizing our integration to its full productive potential.
>>
>> Looking forward to your response.
>>
>> On Thursday, February 22, 2024 at 11:13:46 AM UTC+2 Google Ads API Forum 
>> Advisor wrote:
>>
>>> Hi,
>>>
>>> Thank you for reaching out to the Google Ads API support team.
>>>
>>> After reviewing your concern, I understand that you have submitted a 
>>> request for the Standard access of Google Ads API developer token and 
>>> waiting for a response from the 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: 437-616-4135 
>>><(437)%20616-4135> 
>>>
>>>
>>>- Case ID's: 7-532435278, 4-571136222 
>>>
>>> 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.!5004Q02rzLlW:ref"
>>>
>>> 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/c6d2b726-a0bc-4ec1-8c74-b693dc8dc241n%40googlegroups.com.


Reach API

2024-02-27 Thread Deepak Suhag
Hi. 

I want help with API to fetch reach at campaign level. Can be a daily, 
weekly or monthly or lifetime reach. 

Also,  I have noticed that the sum of daily reach is not equal to weekly or 
monthly. Anyway, we can fix that with the API data if I am getting it at a 
daily level. 


Thank you. 

-- 


*Disclaimer: This email is
confidential, may be legally privileged, and 
is for the intended recipient
only. Access, disclosure, copying, 
distribution, or reliance on any of it by
anyone else is prohibited & may 
be a criminal offense. Please delete if
obtained in error & email 
confirmation to the sender.*

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/2e487ddc-41e0-49dc-889c-38a2835fc14en%40googlegroups.com.


To get the Basic access of the Google Ads developer token.

2024-02-27 Thread Manish Goyal
Hello Team,

It's been more the one month that I have requested twice a month for basic 
access to the Google ads developer token, But the Google support team 
hasn't given any response, update or acknowledgement about the request.

Due to this, my business development is stuck in the process.

Can anyone please help me get the developer token so that I can continue 
the development of my business,

Still, I didn't get any kind of Case ID or anything.

Please look into this issue, and help me to solve this issue.

Thanks @Google 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/9ed70aee-5c14-433a-b255-63e8cc3690a5n%40googlegroups.com.


Reduce time fetch campaign

2024-02-27 Thread Nguyen Vien
I am fetching campaign data through google-ads-python with search_stream, 
And I have the following query:  
SELECT campaign.name,
campaign_budget.amount_micros,
campaign.status,
metrics.cost_micros
FROM campaign
WHERE 
segments.date DURING LAST_7_DAYS 
ORDER BY 
metrics.cost_micros DESC 

It will fetch campaigns meeting with condition in where clause. It will 
have campaign with all statuses of campaign. If I add more one condition to 
where clause to just fetch campaign with status enabled and paused (AND 
campaign.status IN ('ENABLED', 'PAUSED')), that will reduce time fetch 
campaign instead of fetching campaigns from all statues ? 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/cd5c1eca-6810-4310-b248-bd43c598ac39n%40googlegroups.com.


Get priority accounts from custom_client resource

2024-02-27 Thread Nguyen Vien
Currently, I am fetching account from custom_client resource. I want to 
fetch priority account that have been active (cost data) in the last 7 
days. So have any way to do it? 
And one thing what is different between customer resource and 
customer_client resource? 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/d9c7913a-6322-40f2-a652-d4107f3a7d14n%40googlegroups.com.


Re: create customer match audience using rest interface

2024-02-27 Thread Prashant Patidar
Hello,
I have the same use case to run google Apis to manage audience using 
customer match list user list, 
Can you help me to provide the rest Apis as I m not able to retrieve it 
from the package.

Thanks for your understanding it would be a great help for me.
On Thursday, February 25, 2021 at 1:00:11 AM UTC+5:30 Google Ads API Forum 
Advisor Prod wrote:

> Hi Sohail,
>
> Thank you for reaching out. The error indicates that you have issues 
> related to the OAuth2 Verification. Please create the OAuth2 credentials by 
> following this guide 
> 
>  
> and update them in the adwords_api.yml 
> 
>  file.
>
> Thanks and regards,
> Xiaoming, Google Ads API Team
>
> [image: Google Logo] 
> Xiaoming 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2CPseQ:ref
>

-- 
The views and opinions included in this email belong to their author and do 
not necessarily mirror the views and opinions of the company. Our employees 
are obliged not to make any defamatory clauses, infringe, or authorize 
infringement of any legal right. Therefore, the company will not take any 
liability for such statements included in emails. In case of any damages or 
other liabilities arising, employees are fully responsible for the content 
of their emails.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/a850a2ea-7338-4e98-bfd3-261a851743d5n%40googlegroups.com.


How can i get google ads

2024-02-27 Thread al amin
How can i get google ads please help me?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/314b5604-5816-43c5-b393-bf6f168f5ea1n%40googlegroups.com.


how can i get google ads api verified and standard package

2024-02-27 Thread al amin
how can i get google ads api verified and standard package

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/aa69fa31-09be-44c1-91cc-4fe5c0d8ff8en%40googlegroups.com.