MCC tag as a source while creating the user list

2024-08-19 Thread Nikitha Kariappa


Hi There,

I want to create a custom audience segment user list using the Google Ads 
python library. Is there a way to include an MCC tag as a source while 
creating this user list?

Any guidance or examples would be appreciated.

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/094b0eba-3682-4541-a842-348e34e0c512n%40googlegroups.com.


The invalid_grant error does not go away after account recovery

2024-08-19 Thread 'Alytics Info' via Google Ads API and AdWords API Forum
Hi, 
We encountered errors when requesting the ADS API
google.auth.exceptions.RefreshError: ('invalid_grant: Account has been 
deleted', {'error': 'invalid_grant', 'error_description': 'Account has been 
deleted'})
 
We recently deactivated our corporate email @alytics.ru on Google. But we 
have a project alytics.ru in Google Ads API (Organization ID = 816859374764)
After deactivation, our API requests stopped working. 
 
We have restored the account and subscription to the corporate email 
@alytics.ru. But requests continue to fall. From the text we see that 
Google also thinks that the account has been deleted. What do we need to do 
on our part? At the same time, we did not delete the MCC account (Alytics 
(905-488-7706)) - it is still active.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/3b92877e-1f95-490a-a103-906772d0b2c0n%40googlegroups.com.


How can MCC ensure that my team only export my team's data

2024-08-19 Thread Acez
My team has a Google Ads account, which is further managed by higher 
management MCC. Under the MCC, there are multiple accounts from other teams 
in my company. My team wants to export our data using API, but there is a 
concern as the developer token is shared among all the other accounts, my 
team can technically access other accounts' data, if we know their account 
ID. How can the MCC ensure that my team only export my team's account data.

PS: The client ID and the client secrete (for generating access token) is 
from my team's google cloud account, which the MCC currently has no access 
to.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/8ac2b133-7e7c-4f67-ba72-5bdf4334977cn%40googlegroups.com.


metrics.biddable_app_install_conversions

2024-08-19 Thread Stella
Hello, how are you?

I've tried this query for selecting metrics clicks, impressions, 
cost_micros and app installs. The result, however, is not what I expected. 
Data returned is different the query from ad_group_ad. 
Is there any way to get the same result with the query from ad_group_ad?
"SELECT ad_group.id, ad_group.name, campaign.id, campaign.name, 
metrics.impressions, metrics.clicks, metrics.cost_micros, 
metrics.biddable_app_install_conversions, segments.date FROM 
ad_group_ad_asset_view WHERE campaign.status = 'ENABLED' AND 
ad_group.status = 'ENABLED' AND segments.date DURING THIS_MONTH AND 
metrics.impressions > 0 ORDER BY segments.date ASC"


If I run query like below, the result is unique by ad_group.id, 
campaign.id. segments.date
"SELECT ad_group.id, ad_group.name, campaign.id, campaign.name, 
metrics.impressions, metrics.clicks, metrics.cost_micros, segments.date 
FROM ad_group_ad WHERE campaign.status = 'ENABLED' AND ad_group.status = 
'ENABLED' AND segments.date DURING THIS_MONTH AND metrics.impressions > 0 
ORDER BY segments.date ASC"


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/c39370d4-ad26-409a-9ca7-96849c7ac808n%40googlegroups.com.


RE: api request issue defining keyword max cpc

2024-08-19 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.

Kindly note that you can make use of AdGroupCriterionService that makes changes 
for the ad group criteria , where the ad_group_criterion.cpc_bid_micros value 
will change the Max CPC of the specific keyword. Also, note that the 
screenshots  provided were cropped, in order to assist further, please provide 
us with the complete API logs (request and response with request-id and request 
header) generated at your end and uncropped UI screenshot of the Google Ads 
account where you are facing the issue.

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.

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.!5004Q02vF23M:ref" 
(ADR-00263737)

Thanks,

Google Ads API Team


Register for the upcoming workshop: Performance Max and the Google Ads API!

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/23JJT0SIGIRI00yVnawRmUQAiv4ie3ik8Mww%40sfdc.net.


RE: reporting by video resource is broken

2024-08-19 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.

Based on the provided information, I understand that you are getting a "Results 
with generic error: Internal error encountered" error. I have executed the 
query that you have provided, and we are unable to reproduce any error at our 
end. We are getting a successful run on the same request and results are 
returned. I would recommend you retry the request again and let us know how it 
goes at your end.

Also, in order to assist you further, please share the uncropped UI screenshot 
by highlighting the fields that you want to retrieve via the Google Ads API.

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.!5004Q02vF0kO:ref" 
(ADR-00263673)

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


RE: unable to create app ads - err = value_must_be_unset

2024-08-19 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.

App Campaign Legacy (installs) are not supported in the Google Ads API but are 
supported in the UI. From the UI, I can see that the subtype of the campaign in 
which you are trying to create the ad is 'App installs'. So, this could be one 
of the reasons that you are encountering the 'VALUE_MUST_BE_UNSET' error.

I would recommend you refer to this guide on 'App Campaigns', which has details 
and steps regarding the App campaign creation. Also, you may refer to this Code 
Example that illustrates the creation of an app campaign from beginning to end.

I hope this helps.

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

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/Lkc2e0SIGQLQ00nT--ru6lR-2laeXya9H7VQ%40sfdc.net.


Re: some doubts of google ads and google analytics

2024-08-19 Thread Bruno Almeida
Thanks for the feedback, what I'm trying to do is have the app configured 
for internal consumption of the company's data and not need to renew the 
token to authenticate every week, make it fixed or automate its generation 
without having to manually grant access with a web app

Em segunda-feira, 19 de agosto de 2024 às 03:17:44 UTC-3, Google Ads API 
Forum Advisor escreveu:

> Hi,
>
> Thank you for reaching out to the Google Ads API support team.
>
> Here are the answers for your queries:
>
>
> When I add an https URI to my app in the Google Console, will it go 
> directly to "in production" status, or will it require days of evaluation 
> like the developer token "standard" access? 
>
>- Kindly note that the projects configured with a publishing status of 
>in production should complete the verification process, including defining 
>scopes actively requested by your project's OAuth clients, if it meets one 
>or more of the OAuth verification criteria, as described in Verification 
>status 
>. 
>I would recommend you to check this guide Choose a user type and 
>publishing status 
>
> 
>  
>and help center article Setting up your OAuth consent screen 
>publishing status in production 
> 
>for more information. 
>
> With the app in production, can I have a refresh token without an 
> expiration time?  
>
>- There is currently a limit of 100 refresh tokens per Google Account 
>per OAuth 2.0 client ID. If the limit is reached, creating a new refresh 
>token automatically invalidates the oldest refresh token without warning. 
>For more information you can refer to the Refresh token expiration 
>
> documentation. 
>
> How can I pass the credentials to the Google Analytics API in another way 
> without using the JSON path? I want to pass the field values directly. 
>
>- Please note that our team can only assist with the technical queries 
>or concerns related to the Google Ads API 
>. As this 
>issue is related to Google Analytics, I would recommend reaching out to 
> the Google 
>Analytics support team 
>
>  
>as they are well equipped to assist you with this. 
>
>   
>
>
> *This message is in relation to case "ref:!00D1U01174p.!5004Q02vF23H:ref" 
> (ADR-00263736) Thanks,*
>   
> [image: Google Logo] *Google Ads API Team* 
> *Register 
>  for 
> the upcoming workshop: Performance Max and the Google Ads API!*
>  
>
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/533c29df-e1a0-4c87-96fe-39d6c8718740n%40googlegroups.com.


RE: the invalid_grant error does not go away after account recovery

2024-08-19 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.

The reason for this error might be that the email account containing the client 
ID and client secret may have been deleted. As you informed us that you 
restored the account and subscription to the corporate email '@alytics.ru', 
this error should not occur. Could you please check that you can still access 
your client ID and client secret associated with the email address that you 
restored?

Also, to assist you further, kindly provide us with the complete API logs 
(request and response with request-id and request header) generated at your end 
while you encounter this error. Additionally, send us the email id used for 
authentication

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.

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.!5004Q02vF7BL:ref" 
(ADR-00263845)

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


RE: mcc tag as a source while creating the user list

2024-08-19 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.

I understand that you’re seeking guidance on creating a custom audience segment 
user list using the Google Ads Python library, and you also want to know if 
it’s possible to include an MCC tag as a source when creating this user list. I 
would recommend you to refer to the Custom Audiences documentation for more 
information. The following Python code example demonstrates how to create a 
CustomAudience using the CustomAudienceService. Note that there is no way to 
pass the MCC ID while creating the customer audience segment user list using 
the Google Ads API.
This message is in relation to case "ref:!00D1U01174p.!5004Q02vF79o:ref" 
(ADR-00263842)

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/saUkg0SIGV0U00lo44DPtOQK-9cbHXsOkdZA%40sfdc.net.


RE: metrics.biddable_app_install_conversions

2024-08-19 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.

Note that you are comparing the results of two different resources in the 
Google Ads API.

The ad_group_ad_asset_view is a link between an AdGroupAd and an Asset. The 
Ad-level performance metrics for assets are aggregated in the 
ad_group_ad_asset_view. This view collects metrics for assets per individual 
ad. Thus, querying this view returns a row per ad group and ad.

Whereas the ad_group_ad represents an individual ad within an ad group. It 
provides information about the ad itself and its performance metrics.

So, it is expected that the results from both queries are different. I hope 
this clarifies.


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

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


pull pmax campaign cost

2024-08-19 Thread Rexton Chen
I need to pull the pmax type campaign cost from the campaign and start date 
dimensions. But it seems impossible. Because from the perspective of the 
document, there is only the account_id field, and it is not refined to the 
campaign_id field.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/344cd2bf-ab3f-49a4-9cd5-ead8109990ddn%40googlegroups.com.


search_click_share on the ad_group level

2024-08-19 Thread be incremental
Hi,

I'm trying to extract the search_click_share metric from the ad_group 
endpoint. 
Unfortunately, if ad_group is specified in the FROM clause of the query 
it's not available.

*Two questions:*
1. why isn't search_click_share available through the ad_group endpoint, 
while in the google ads ui that metric is available in the ad group level?
2. The google ads api docs contain this sentence in the ad group endpoint 
page: "This page shows all metrics and segments that can be put in the same 
SELECT clause as the fields of ad_group. However, when you specify ad_group in 
the FROM clause, some metrics and segments cannot be used. Use the 
following filter to show only the fields that can be used when ad_group is 
specified in the FROM clause."

I understand that I can't have ad_group.name, ad_group.id and 
metrics.search_click_share in the same select statement while using 
ad_group in the from clause. but is there another endpoint I can use which 
does allow these three fields to be in the same select statement? I don't 
understand why search_click_share (and other metrics) appear in the 
ad_group endpoint documentation if they can't be used.

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/5391f67d-c234-4211-b4f9-27ef3014ad7en%40googlegroups.com.


Asset Level Data Via API

2024-08-19 Thread saif khan
Hi Team,

I am trying to pull Asset Level data for PMAX, App and Demand Gen campaigns 
using API.

Attached is the columns that I need to pull.

Can you help me with the query(Table name and column Name)?

Regards,
Saif Khan

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/d3888eba-f945-4ac1-81c4-d1025b99ef29n%40googlegroups.com.


RE: pull pmax campaign cost

2024-08-19 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.

Based on the information provided, I understand that you would like to pull 
Performance Max (Pmax) campaign cost data with the start date field for the 
campaigns in your account. You can retrieve Pmax campaign cost data by using 
the campaign resource and include the fields campaign.id, campaign.start_date, 
and metrics.cost_micros in your query. I would recommend referring to this 
document for more information about the Performance Max campaign report. You 
can try this sample query to pull the cost data for Pmax campaigns:

SELECT campaign.id, metrics.cost_micros, campaign.start_date FROM campaign 
WHERE campaign.advertising_channel_type = 'PERFORMANCE_MAX' AND campaign.id = 
1234567

Also, you can utilize GoogleAdsService.SearchStream or GoogleAdsService.Search 
to retrieve the objects. I would suggest you use the Query Builder to build 
your query and Query Validator to validate your query.
This message is in relation to case "ref:!00D1U01174p.!5004Q02vF7vY:ref" 
(ADR-00263906)

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


"Edit List" Option Disabled in UI for Custom Audience Segment Created via AP

2024-08-19 Thread Nikitha Kariappa


Hi,

I’ve created a custom audience segment via the Google Ads API using the 
Python library, but I’ve noticed that the "Edit List" option in the Google 
Ads UI is disabled for this segment

Could you please assist in resolving this issue? Is there a reason why the 
"Edit List" option is unavailable for API-created segments? Any guidance 
would be appreciated.


Thank you for your help.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/77d4e606-bbe7-446b-a37e-bd9792fe22d7n%40googlegroups.com.