Re: Access an ad account via API which is not under any ad manager account

2022-07-21 Thread Techsupport L2L
Thank you for your assistance.

On Thursday, July 21, 2022 at 11:43:00 PM UTC+5:30 adsapi wrote:

> Hello,
>
> A manager account is not required for Ads API use. You can either: 
>
>1. Store the refresh token for each user and provide it when necessary 
>2. Users who want to use your tool should manually add the email 
>address that is associated with the Google Cloud project (refresh token). 
>This manual step must only be performed once.  
>
> Either of these are viable methods for users to authenticate. Please let 
> us know if you have any further questions.
>
> Regards,
>
> [image: Google Logo] 
> Matt 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2bmI3A:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/8cce2bdd-235a-4575-bf34-270b4b95ea80n%40googlegroups.com.


is there any objective can pull via google ads api report?

2022-07-21 Thread dimas ilham
Hi, I want to create a report via google ads API, can I pull some objective 
ads via google ads API to my report?  I've read some documents on your 
website 
,
 
but I can't find them in the documentation

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/2d582559-6a7a-4476-937a-ec18cb66fbb6n%40googlegroups.com.


RE: How to enable AverageCpcMicros on GenerateHistoricalMetrics in V11's KeywordPlanService?

2022-07-21 Thread Bruce Axtens
Hello Carmela
Yes, I have checked that documentation link. I have adapted that code below for 
our workflow. Please demonstrate to me where I have gone wrong. I cannot see 
where I can enable the AverageCpcMicros value.
Kind regards,
Bruce.
Me
You will see Me occasionally and that is implement as:
private static string Me => new 
StackTrace().GetFrame(1).GetMethod().Name;
I do understand the performance penalties involved with using it.
CreateKeywordPlan
This routine is expressed as
public static (string plan, GoogleAdsException exception) 
CreateKeywordPlan(
GoogleAdsClient client,
string customerId,
string keywordPlanForecastInterval,
bool debug = false)
{
if (debug) Debugger.Launch();
// Get the KeywordPlanService.
KeywordPlanServiceClient serviceClient = 
client.GetService(Services.V11.KeywordPlanService);

// Create a keyword plan for next quarter forecast.
KeywordPlan keywordPlan = new KeywordPlan()
{
Name = $"Keyword plan 
{Me}_{DateTime.UtcNow.ToString($"'-'MMM'-'dd' 'HH'-'mm'-'ss'-'ff")}",
ForecastPeriod = new KeywordPlanForecastPeriod()
{
DateInterval = 
(KeywordPlanForecastInterval)Enum.Parse(typeof(KeywordPlanForecastInterval), 
keywordPlanForecastInterval),
}
};

KeywordPlanOperation operation = new KeywordPlanOperation()
{
Create = keywordPlan
};

// Add the keyword plan.
MutateKeywordPlansResponse response;
try
{
response = serviceClient.MutateKeywordPlans(
   customerId, new KeywordPlanOperation[] { operation });
}
catch (GoogleAdsException e)
{
return (null, e);
}
// Display the results.
String planResource = response.Results[0].ResourceName;
return (planResource, null);
}
CreateKeywordPlanCampaign
To implement this I have created two helper methods, New_KeywordPlanCampaign 
and New_KeywordPlanGeoTarget
public static (KeywordPlanCampaign campaign, GoogleAdsException 
exception) New_KeywordPlanCampaign(
string name,
string cpcBidMicros,
string keywordPlanNetwork,
string keywordPlan,
bool debug = false)
{
if (debug) Debugger.Launch();
return (new KeywordPlanCampaign()
{
Name = name,
CpcBidMicros = long.Parse(cpcBidMicros),
KeywordPlanNetwork = 
(KeywordPlanNetwork)Enum.Parse(typeof(KeywordPlanNetwork), keywordPlanNetwork),
KeywordPlan = keywordPlan
}, null);
}

public static (KeywordPlanGeoTarget[] geotarget, GoogleAdsException 
exception) New_KeywordPlanGeoTarget(
string geoId,
bool debug = false)
{
if (debug) Debugger.Launch();
var result = new List();
var ids = geoId.Split(',');
foreach (var id in from id in ids select long.Parse(id))
{
result.Add(new KeywordPlanGeoTarget() { GeoTargetConstant = 
ResourceNames.GeoTargetConstant(id) });
}
return (result.ToArray(), null);
}

public static (string CampaignPlan, GoogleAdsException exception) 
CreateKeywordPlanCampaign(
GoogleAdsClient client,
string customerId,
KeywordPlanCampaign campaign,
KeywordPlanGeoTarget[] keywordPlanGeoTarget,
string langId,
bool debug = false)
{
if (debug) Debugger.Launch();
// Get the KeywordPlanCampaignService.
KeywordPlanCampaignServiceClient serviceClient = client.GetService(
Services.V11.KeywordPlanCampaignService);
campaign.GeoTargets.AddRange(keywordPlanGeoTarget);

campaign.LanguageConstants.Add(ResourceNames.LanguageConstant(long.Parse(langId)));
KeywordPlanCampaignOperation operation = new 
KeywordPlanCampaignOperation()
{
Create = campaign
};

// Add the campaign.
MutateKeywordPlanCampaignsResponse response =
serviceClient.MutateKeywordPlanCampaigns(customerId,
new KeywordPlanCampaignOperation[] { operation });

// Display the result.
String planCampaignResource = response.Results[0].ResourceName;
//Console.WriteLine($"Created campaign for keyword plan: 
{planCampaignResource}.");
return (planCampaignResource, null);
}
CreateKeywordPlanAdGroup
To implement this, I have created a helper method New_KeywordPlanAdGroup
public static (KeywordPlanAdGroup adGroup,

Re: How to get valid GCLIDs (for testing)?

2022-07-21 Thread Dario Macieira Mitchell
Just adding my support, would be great to have this feature.

On Wednesday, February 16, 2022 at 9:58:22 PM UTC-6 adsapi wrote:

> Hi there,
>
> Thanks for getting back to us.
>
> Our team is looking into the created feature request. However, I can not 
> guarantee that it will be implemented soon regarding its availability in 
> the API. For now, you may for now keep an eye on our blog 
>  for 
> updates when they become supported.
>
> Let us know if you have any additional questions.
>
> Regards,
> [image: Google Logo] 
> Yasar 
> Google Ads API Team 
>   
>
>  
>
>  
>
>
> ref:_00D1U1174p._5004Q2W5f7R:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/d20b923e-be6b-4f1f-a850-42c62f40708an%40googlegroups.com.


Re: Error Reading From Api V11 - User in the cookie is not a valid Ads user.

2022-07-21 Thread Jose Luis Petracca
Sorry, that was an Error, that i've fixed

This is a new one, the detail in this thread is correct

On Thursday, July 21, 2022 at 4:04:13 PM UTC-3 adsapi wrote:

> Hi Jose,
>
> Thank you for reaching out to the Google Ads API support team. 
>
> It looks like we have a separate thread for this issue and you confirmed 
> on that thread you fixed that error, the solution was reinstall google-ads 
> python package. We can keep correspondence related to this issue on the 
> other thread to limit any confusion.
> Thanks,
> [image: Google Logo] 
> Nirmitabahen Gaurav 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2bm7gu:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/b9259068-38cb-4917-bbeb-afcfc58610adn%40googlegroups.com.


Re: ocid in https://adwords.google.com URL's

2022-07-21 Thread Harsha Nandiwada
+1 We need this feature as well, whether it's OCID or some other way to 
link to this page
https://ads.google.com/aw/overview?ocid=xxx&euid=xxx&__u=xxx&uscid=xxx&__c=xxx&authuser=0&campaignId=xxx
The closest I can get is 
https://ads.google.com/aw/overview?ocid=&authuser=0&campaignId=xxx
but that still relies on OCID.

On Tuesday, May 24, 2022 at 6:03:21 AM UTC-5 rajkow...@gmail.com wrote:

> I made better workaround, than I posted above with PHP.
>
> You can do it faster by JS:
>
> 
> // Open settings/sub-account settings 
> https://ads.google.com/aw/settings/subaccounts
> // SET: Show rows:500
> // Scroll to the bottom of page to get all stuff loaded to the memory
> // Open developer tools (CTRL + SHIFT + J)
> // Paste code into developer console:
>
> // START
> var ocid = document.querySelector('html').innerHTML;
> var matches = 
> Array.from(ocid.matchAll(/]+>([^<]+)<\/a><\/div>
> class="[^"]+">([^<]+)/g)); > var output = []; > matches.forEach(element => { > var customer_id = element[3].replaceAll('-',''); > var ocid = element[1]; > var name = element[2]; > output.push(customer_id + ';' + ocid + ';' + name); > }); > output = output.join("\n"); > copy(output); > // END > > // now, you have first 500 accounts copied to clipboard in following > format: customer_id ; ocid ; name > // by Kamil Rajkowski > > > On Monday, March 28, 2022 at 8:47:54 PM UTC+2 adsapi wrote: > >> Hello, >> >> The UI is subject to change at any time, so there's no guarantee a deep >> link from today would work tomorrow. Therefore, we don't recommend scraping >> to construct deep links. The ocid also isn't relevant in any API context, >> so we don't expose it in the API. We have had a few feature requests for >> deep linking again recently, and the team is considering it. However, I >> cannot comment on our future plans with any certainty. >> >> Regards, >> Mike, Google Ads API Team >> >> ref:_00D1U1174p._5001UHEIuy:ref >> > -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ 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/eef10c53-bdda-41d2-97c4-b35d26e028c1n%40googlegroups.com.

Re: How to detect RESOURCE_TEMPORARILY_EXHAUSTED error type

2022-07-21 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi Marc,

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

Let me know if you need any question related to the API.

Thanks,

Nirmitabahen Gaurav
Google Ads API Team
ref:_00D1U1174p._5004Q2bm0wl:ref

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


Re: Error Reading From Api V11 - User in the cookie is not a valid Ads user.

2022-07-21 Thread Jose Luis Petracca
Please dont forget to reply this

On Wednesday, July 20, 2022 at 3:55:45 PM UTC-3 Jose Luis Petracca wrote:

> Hi, 
>
> I am trying to get data form the api, it is a really simple request, that 
> is an example from the package
>
> *System information:*
>
>- python 3.9.9
>- package version google-ads==17.0.0
>- using service account
>
>
> *The Code*
>
>
> from google.ads.googleads.client import GoogleAdsClient
> from google.ads.googleads.errors import GoogleAdsException
>
> credentials = {
> "developer_token": "devELOPERTOkeen",
> "json_key_file_path" : PATH_TO_SERVICE_ACCOUNT_JSON,
> "impersonated_email":"serviceacc...@email.iam.gserviceaccount.com 
> ",
> "use_proto_plus": True,
> 'login_customer_id' : '22' #MMC ID
> }
>
> googleads_client = GoogleAdsClient.load_from_dict(credentials)
>
>
> def stream_response(client, customer_id, query):
> return 
> client.get_service("GoogleAdsService").search_stream(customer_id, 
> query=query)
>
> def main(client, customer_id):
> query = "SELECT campaign.name FROM campaign LIMIT 10"
> response = stream_response(client, customer_id, query=query)
> for batch in response:
> print(batch)
>
>
> customer_id = '1223334445'
> main(googleads_client, customer_id)
>
> *The Response  /error*
> GoogleAdsException: (<_SingleThreadedRendezvous of RPC that terminated 
> with:status = StatusCode.UNAUTHENTICATEDdetails = "Request is 
> missing required authentication credential. Expected OAuth 2 access token, 
> login cookie or other valid authentication credential. See 
> https://developers.google.com/identity/sign-in/web/devconsole-project.";   
>  debug_error_string = 
> "{"created":"@1658341926.845702000","description":"Error received from peer 
> ipv6:[2800:3f0:4002:80c::200a]:443","file":"src/core/lib/surface/call.cc","file_line":967,"grpc_message":"Request
>  
> is missing required authentication credential. Expected OAuth 2 access 
> token, login cookie or other valid authentication credential. See 
> https://developers.google.com/identity/sign-in/web/devconsole-project.","grpc_status":16}";
>  >, 
> <_SingleThreadedRendezvous of RPC that terminated with:status = 
> StatusCode.UNAUTHENTICATEDdetails = "Request is missing required 
> authentication credential. Expected OAuth 2 access token, login cookie or 
> other valid authentication credential. See 
> https://developers.google.com/identity/sign-in/web/devconsole-project.";   
>  debug_error_string = 
> "{"created":"@1658341926.845702000","description":"Error received from peer 
> ipv6:[2800:3f0:4002:80c::200a]:443","file":"src/core/lib/surface/call.cc","file_line":967,"grpc_message":"Request
>  
> is missing required authentication credential. Expected OAuth 2 access 
> token, login cookie or other valid authentication credential. See 
> https://developers.google.com/identity/sign-in/web/devconsole-project.","grpc_status":16}";
>  >, 
> errors { error_code { authentication_error: NOT_ADS_USER } message: "User 
> in the cookie is not a valid Ads user." } request_id: 
> "8ykzEeM7wVjZoJ1VDI54aw" , '8ykzEeM7wVjZoJ1VDI54aw')
>
>
>
>
> Using service account is mandatory. Anyone knows what i am doing wrong?
>
> Regards
> Jose Luis
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/ad55d6b0-c7ae-4234-8800-624968349e75n%40googlegroups.com.


Re: Which report will get the campaign id or name with gclid?

2022-07-21 Thread JM
Got it thanks!

Is the api the only place where campaign id/name and gclid can be looked up 
together?  Does the Google Ads Editor have this information?

On Thursday, July 21, 2022 at 2:33:35 AM UTC-4 adsapi wrote:

> Hi JM,
>
> Thank you for reaching us out. I am Sherwin from Google Ads API support 
> team. I hope that you are doing well today.
>
> You may use the Click View  
> report.
>  
> You may use this GAQL 
> 
>  for 
> you to create a query for Click View. You may select the click_view.gclid 
> 
>  and 
> choose the campaign.id and campaign.name on the segment clause. Please 
> note that when a click_view is the resource in the FROM clause, a filtering 
> condition must be present in the WHERE clause specifying a single day 
> within last 90 days.
>
> Please let us know if this works for you.
>
> Kind regards, 
> [image: Google Logo] 
> Sherwin Vincent 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2bmAL2:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/84604e71-9e54-482c-82ce-d6d5a237392an%40googlegroups.com.


Re: Listed Recommendations are NOT available through API

2022-07-21 Thread SUBIN P VASU
To Anthony Cyril, Please try to read previous comments before offering your 
valuable assists. Don't waste my time.

On Thursday, 21 July 2022 at 20:07:10 UTC+5:30 adsapi wrote:

> Hi,
>
> Thank you for the reply. Allow me to assist you here. 
>
> To start off your recommendation, you can follow this  guide 
> 
>  and 
> you may check our recommendation resource you can visit it here 
> . 
> In addition, you can make use of Query Builder 
> 
>  and Query Validator 
>  to 
> help them construct and validate queries. Let me know if it works for you.
>
>
> Best,
> [image: Google Logo] 
> Anthony Cyril 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2bm5fg:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/847bcce6-9e93-4c9f-bd8b-99d2e0b70f66n%40googlegroups.com.


Re: Keyword View Query returning Empty Results

2022-07-21 Thread Aarthi Ilangovan
Hi, 

I tried as you have mentioned. 

But again for these accounts - 5867235702,4001598351, *empty responses*. 

For the other 2 accounts, *many field values are missing* . Some are : 
  
 ad_group_criterion.position_estimates.first_page_cpc_micros,
  
 ad_group_criterion.position_estimates.first_position_cpc_micros,
  
 ad_group_criterion.position_estimates.top_of_page_cpc_micros,
  
 ad_group_criterion.quality_info.post_click_quality_score,
   ad_group_criterion.quality_info.search_predicted_ctr,
  
 ad_group_criterion.quality_info.creative_quality_score,
  
 
ad_group_criterion.position_estimates.estimated_add_clicks_at_first_position_cpc,
  
 ad_group_criterion.position_estimates.estimated_add_cost_at_first_position_cpc 
 
Logs : 
[2022-07-21 15:49:29,846 - INFO] Request made: ClientCustomerId: 5867235702, 
Host: googleads.googleapis.com, Method: 
/google.ads.googleads.v10.services.GoogleAdsService/SearchStream, 
RequestId: W9XWkb_kMnrbRRjHJvM6JQ, IsFault: False, FaultMessage: None 
[2022-07-21 15:49:30,712 - INFO] Request made: ClientCustomerId: 
4001598351, Host: googleads.googleapis.com, Method: 
/google.ads.googleads.v10.services.GoogleAdsService/SearchStream, 
RequestId: FSAMle8jSI2EsU7ZUCfGcA, IsFault: False, FaultMessage: None 
[2022-07-21 15:49:39,166 - INFO] Request made: ClientCustomerId: 
4999818919, Host: googleads.googleapis.com, Method: 
/google.ads.googleads.v10.services.GoogleAdsService/SearchStream, 
RequestId: dVmP0lEOXmDjIkaQDhwJyw, IsFault: False, FaultMessage: None 
[2022-07-21 15:49:43,345 - INFO] Request made: ClientCustomerId: 8385904859, 
Host: googleads.googleapis.com, Method: 
/google.ads.googleads.v10.services.GoogleAdsService/SearchStream, 
RequestId: Gc1Mh-TMGQcLxdqUWRogMQ, IsFault: False, FaultMessage: None

Seems to be a bug as I get unexpected & invalid after entering a "valid" 
query !!

Regards,

On Wednesday, July 20, 2022 at 3:46:32 PM UTC+2 adsapi wrote:

> Hi Aarthi,
>
> Thank you for the reply.
>
> I think you missed the email sent by my colleague Sherwin. However, allow 
> me to reiterate the response of my colleague and you can see it below:
>
> “
>
> *Thank you for providing us the logs. We tried it on our end and we got 
> the same result. However, if we remove the 3 segments 
> (segments.ad_network_type, segments.device, segments.date) we will get the 
> actual result. What we can do is to advise you to try to remove the three 
> segments to get the result. You may also check this **segmentation guide* 
> 
>  
>
> * for more information. Please let us know if this works for you.*”
>
> Best regards,
> [image: Google Logo] 
> Heidi 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2blY8Z:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/c5fcaa25-23f9-4a04-b93f-8844d869e654n%40googlegroups.com.


Re: Access an ad account via API which is not under any ad manager account

2022-07-21 Thread Techsupport L2L
I think there is a little misunderstanding here.

I do not own any ad manager account, we have a website and we have 
registered users in our website. We've developed a feature where,
- After our registered users logged in to our website they can connect 
their Google accounts with our website using OAuth(we're saving access 
token and refresh token for each user and use them to make API call for 
each user) and then can create/manage google ads from our websites by  
themselves.

Now many of our websites registered users ad account are not under any ad 
manager account so my question is,
- Will we able to access their ad account and create/manage ads via API 
without doing anything manually or will we've to ask them to create a 
manager account and move their ad account under a manager account and then 
connect their Google account in our website in order to manage their ads 
using API from our website?

We've too many users in our websites and we can not ask each of them to 
provide access manually.

Let us know if these makes things more clear or not.





On Thursday, July 21, 2022 at 7:36:29 PM UTC+5:30 adsapi wrote:

> Hi,
>
> Thank you for your reply. You may refer below for my responses to the 
> items you sent over for clarification :
>
>
> *Yes, that is what I meant. Client's accounts are not managed by a manager 
> account and I want to access them and create/edit campaigns within those 
> accounts.*
>
> For you to be able to perform API requests on client accounts outside your 
> manager account's hierarchy, you will need first to identify which user / 
> email address was used to generate the current OAuth2 credentials 
>  
> you are using for authentication. Once you have identified the user, that 
> user will then need to be added (see this article 
> ), or given access 
> ,
>  
> as a user of the client account outside your account hierarchy.
>
> One this is done, your current authentication credentials can then be used 
> when performing API requests on that client account.
>
>
> *Let me give you brief description about our tool, we have created a 
> feature in our website where our clients can connect their ad 
> accounts(we've used OAuth) and easily create/manage google ads from there. 
> Now many of our client's ad accounts are not managed by any manager account 
> so I would like to know that will our clients be able to connect their ad 
> accounts in our websites using OAuth and after that will we be able to 
> create/manage campaign for their ad accounts?*
>
> For this item, each of those client accounts would need to provide access 
> to your user, so you can use your current authentication credentials when 
> performing API requests on those other client accounts.
>
> Let us know how this goes on your end.
>
> Best regards,
>
> [image: Google Logo] 
> Peter Laurence 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2bmI3A:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/e6d9678c-5860-4b03-a947-abdb8772fd36n%40googlegroups.com.


Re: How to detect RESOURCE_TEMPORARILY_EXHAUSTED error type

2022-07-21 Thread Marc Donis
Thank you! This appears to be exactly what I need:

for (final GoogleAdsError googleAdsError : gae.getGoogleAdsFailure
().getErrorsList()) {
final QuotaError quotaError = googleAdsError.getErrorCode().
getQuotaError();
if (quotaError == QuotaError.RESOURCE_EXHAUSTED
|| quotaError == QuotaError.
RESOURCE_TEMPORARILY_EXHAUSTED) {

}
}


On Thursday, 21 July 2022 at 09:13:15 UTC+2 adsapi wrote:

> Hi Marc,
>
> Thank you for the reply.
>
> You may check this documentation 
> 
>  
> as it provides sample code  for  Handle Rate Exceeded Error. Moving 
> forward,  could you confirm  what client library code example you are 
> looking for to find this 
> QuotaErrorEnum.QuotaError.RESOURCE_TEMPORARILY_EXHAUSTED value? You may 
> check our supported client library here 
>  . Also 
> note that you can browse specific client library code for getting enums.
>
> Best regards,
> [image: Google Logo] 
> Heidi 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2bm0wl:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/3857824f-166e-4875-ac60-5423e6770fc6n%40googlegroups.com.


Re: Listed Recommendations are NOT available through API

2022-07-21 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi,

Thank you for the reply. Allow me to assist you here.

To start off your recommendation, you can follow this guide and you may check 
our recommendation resource you can visit it here. In addition, you can make 
use of Query Builder and Query Validator to help them construct and validate 
queries. Let me know if it works for you.


Best,

Anthony Cyril
Google Ads API Team
ref:_00D1U1174p._5004Q2bm5fg:ref

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


Re: Update MaxCPC Problem

2022-07-21 Thread Werner Reyneke
Hi there

Here is the header output. Does this help in troubleshooting as to why the
customer id and keywords don't match up?

[image: image.png]

On Fri, Jul 15, 2022 at 6:00 AM Google Ads API Forum Advisor
 wrote:

> Hi Werner,
>
> Thank you for posting your concern. Allow me provide support to your
> concern.
>
> To investigate the issue and to address it, please provide the complete
> request
> 
>  and response
> 
>  logs
> with request ID
> 
>  and request header
> 
>  generated
> on your end.
>
> You can provide it via *Reply privately to author* option. If this option
> is not available, then send it instead on this email address
> googleadsapi-supp...@google.com.
>
> Regards,
> [image: Google Logo]
> Ernie John
> Google Ads API Team
>
>
> ref:_00D1U1174p._5004Q2cWAmk:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/CAMrH_-nn4NWVQK9MLwubusZdxtfUOhfjmfeAEWd05ZKwsgOnRw%40mail.gmail.com.


Re: Access an ad account via API which is not under any ad manager account

2022-07-21 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi,

Thank you for your reply. You may refer below for my responses to the items you 
sent over for clarification :

Yes, that is what I meant. Client's accounts are not managed by a manager 
account and I want to access them and create/edit campaigns within those 
accounts.

For you to be able to perform API requests on client accounts outside your 
manager account's hierarchy, you will need first to identify which user / email 
address was used to generate the current OAuth2 credentials you are using for 
authentication. Once you have identified the user, that user will then need to 
be added (see this article), or given access, as a user of the client account 
outside your account hierarchy.

One this is done, your current authentication credentials can then be used when 
performing API requests on that client account.

Let me give you brief description about our tool, we have created a feature in 
our website where our clients can connect their ad accounts(we've used OAuth) 
and easily create/manage google ads from there. Now many of our client's ad 
accounts are not managed by any manager account so I would like to know that 
will our clients be able to connect their ad accounts in our websites using 
OAuth and after that will we be able to create/manage campaign for their ad 
accounts?

For this item, each of those client accounts would need to provide access to 
your user, so you can use your current authentication credentials when 
performing API requests on those other client accounts.

Let us know how this goes on your end.

Best regards,

Peter Laurence
Google Ads API Team
ref:_00D1U1174p._5004Q2bmI3A:ref

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


RE: Create Search Terms via GoogleAds API

2022-07-21 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi,

Thanks for reaching out to the Google Ads API Forum.

Note that creating search terms via Google Ads API isn’t possible. However, you 
may be able to add a negative keyword to an ad group by setting  negative = 
true in the AdGroupCriterion and this sample code example. Let me know if you 
have any questions.

Regards,

Yasar
Google Ads API Team
ref:_00D1U1174p._5004Q2bmJaF:ref

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


Re: Keyword View Query returning Empty Results

2022-07-21 Thread Aarthi Ilangovan
Hi, 

I tried as you have mentioned. 

But again for these accounts - 5867235702,4001598351, *empty responses*. 

For the other 2 accounts, *many field values are missing* . Some are : 
  
 ad_group_criterion.position_estimates.first_page_cpc_micros,
  
 ad_group_criterion.position_estimates.first_position_cpc_micros,
  
 ad_group_criterion.position_estimates.top_of_page_cpc_micros,
  
 ad_group_criterion.quality_info.post_click_quality_score,
   ad_group_criterion.quality_info.search_predicted_ctr,
  
 ad_group_criterion.quality_info.creative_quality_score,
  
 
ad_group_criterion.position_estimates.estimated_add_clicks_at_first_position_cpc,
  
 ad_group_criterion.position_estimates.estimated_add_cost_at_first_position_cpc 
 
Logs : 
[2022-07-21 15:49:29,846 - INFO] Request made: ClientCustomerId: 
5867235702, Host: googleads.googleapis.com, Method: 
/google.ads.googleads.v10.services.GoogleAdsService/SearchStream, 
RequestId: W9XWkb_kMnrbRRjHJvM6JQ, IsFault: False, FaultMessage: None 
[2022-07-21 15:49:30,712 - INFO] Request made: ClientCustomerId: 
4001598351, Host: googleads.googleapis.com, Method: 
/google.ads.googleads.v10.services.GoogleAdsService/SearchStream, 
RequestId: FSAMle8jSI2EsU7ZUCfGcA, IsFault: False, FaultMessage: None 
[2022-07-21 15:49:39,166 - INFO] Request made: ClientCustomerId: 
4999818919, Host: googleads.googleapis.com, Method: 
/google.ads.googleads.v10.services.GoogleAdsService/SearchStream, 
RequestId: dVmP0lEOXmDjIkaQDhwJyw, IsFault: False, FaultMessage: None 
[2022-07-21 15:49:43,345 - INFO] Request made: ClientCustomerId: 
8385904859, Host: googleads.googleapis.com, Method: 
/google.ads.googleads.v10.services.GoogleAdsService/SearchStream, 
RequestId: Gc1Mh-TMGQcLxdqUWRogMQ, IsFault: False, FaultMessage: None

Definitely *buggy and questionable responses *that I get after entering a 
"valid" query !!

Regards,


On Wednesday, July 20, 2022 at 3:46:32 PM UTC+2 adsapi wrote:

> Hi Aarthi,
>
> Thank you for the reply.
>
> I think you missed the email sent by my colleague Sherwin. However, allow 
> me to reiterate the response of my colleague and you can see it below:
>
> “
>
> *Thank you for providing us the logs. We tried it on our end and we got 
> the same result. However, if we remove the 3 segments 
> (segments.ad_network_type, segments.device, segments.date) we will get the 
> actual result. What we can do is to advise you to try to remove the three 
> segments to get the result. You may also check this **segmentation guide* 
> 
>  
>
> * for more information. Please let us know if this works for you.*”
>
> Best regards,
> [image: Google Logo] 
> Heidi 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2blY8Z:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/995db540-3ad0-4ccb-9bdc-af7a19c858f3n%40googlegroups.com.


RE: internal server error. (500) in response to Google Ads API request

2022-07-21 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi Daria,

Thank you for raising this concern to the Google Ads API Forum.

It appears that you have encountered an internal error. This error occurs when 
something unexpected happened while processing the request and the API isn't 
functioning correctly due to a bug. However, this is transient in nature and 
the API request will work again when retying it after 30 seconds or some time. 
That said, please retry your request again to see if this error will still 
occur.

For more information before raising this to the rest of my team, could you 
please tell us how frequently you encounter this internal error ? Also, it 
would be helpful if you can provide the complete request and response logs with 
requestID and request header that generated on your end? This information will 
help our team to further check the said error. If you haven't yet, logging can 
be enabled by navigating to the Client libraries > Your client library (ex. 
Java) > Logging documentation, which you can access from this link.

For privacy purposes, you can provide it via the Reply privately to author 
option. If this option is not available, then send it instead on this email 
address googleadsapi-supp...@google.com.

Best regards,

Jinky
Google Ads API Team
ref:_00D1U1174p._5004Q2bmK0r:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/0b61Z0RFDHUV00hEc7Va4kRWqeLyHky3xF-Q%40sfdc.net.


Re: search impression share doesn't exists in google ads api response

2022-07-21 Thread Kirill Senatrev
request-id _ygWuG8eUJKpJUbMp0jn_Q

On Thursday, July 21, 2022 at 3:56:21 PM UTC+3 adsapi wrote:

> Hi,
>
> Thanks for reaching out to the Google Ads API Forum.
>
> For us to investigate further on the issues with getting search impression 
> share data from ad_group report, could you provide us with the following 
> details?
>
>1. Complete *request* 
>
> 
>  
>and *response* 
>
> 
>  
>logs with the *request-id* 
>
> ,
>  
>generated 
>2. Complete Ads UI screenshot showing search impression share data for 
>Ad Group 
>
> For the client library, logging can be enabled by navigating to the Client 
> libraries > Your client library (select Python) > Logging documentation, 
> which you can access from this *link* 
> . You may 
> then send the requested information via the *Reply privately to author* 
> option.
>
> Regards,
> [image: Google Logo] 
> Yasar 
> Google Ads API Team 
>   
>
>  
>
>  
>
>
> ref:_00D1U1174p._5004Q2bmLH5:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/2248803d-4760-4a56-aa1c-eef9f2deec46n%40googlegroups.com.


Re: Create Search Terms via GoogleAds API

2022-07-21 Thread Jim Vaillancourt
Search terms can't be created in the API nor the online interface. A search 
term is what a user types into Google to trigger an ad. The keywords you 
target, and their match type, determine which search terms your ads are 
eligible to show on. More info here: 
https://support.google.com/google-ads/answer/2472708


On Thursday, July 21, 2022 at 5:07:28 AM UTC-5 Cantare John wrote:

> Is it possible to create new search terms with googleads 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/43ff0f0e-098b-4bb3-843d-8c2b681715f2n%40googlegroups.com.


RE: How do we map these values of [ad_group_ad.policy_summary.approval_status] by invoking Google ADS api to the value of status on the page?

2022-07-21 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi,

Thanks for reaching out to the Google Ads API Forum.

For us to investigate further on the values fetched by 
[ad_group_ad.policy_summary.approval_status]  and status seen on UI report to 
map those, could you provide us with the following details?

Customer ID or complete request and response logs with the request-id, generated
Complete Ads UI screenshot showing said status seen in the UI

For the client library, logging can be enabled by navigating to the Client 
libraries > Your client library (ex Java) > Logging documentation, which you 
can access from this link. You may then send the requested information via the 
Reply privately to author option.

Regards,

Yasar
Google Ads API Team
ref:_00D1U1174p._5004Q2bmLkH:ref

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


RE: search impression share doesn't exists in google ads api response

2022-07-21 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi,

Thanks for reaching out to the Google Ads API Forum.

For us to investigate further on the issues with getting search impression 
share data from ad_group report, could you provide us with the following 
details?

Complete request and response logs with the request-id, generated
Complete Ads UI screenshot showing search impression share data for Ad Group

For the client library, logging can be enabled by navigating to the Client 
libraries > Your client library (select Python) > Logging documentation, which 
you can access from this link. You may then send the requested information via 
the Reply privately to author option.

Regards,

Yasar
Google Ads API Team
ref:_00D1U1174p._5004Q2bmLH5:ref

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


How do we map these values of [ad_group_ad.policy_summary.approval_status] by invoking Google ADS api to the value of status on the page?

2022-07-21 Thread zhi danble
Hi, according to the Google Ads API guides, I can get default Ads overview 
screen in the UI by the query statement below:
SELECT ad_group_ad.ad.expanded_text_ad.headline_part1,
  ad_group_ad.ad.expanded_text_ad.headline_part2,
  ad_group_ad.ad.expanded_text_ad.headline_part3,
  ad_group_ad.ad.final_urls,
  ad_group_ad.ad.expanded_text_ad.description,
  ad_group_ad.ad.expanded_text_ad.description2,
  campaign.name,
  ad_group.name,
  ad_group_ad.policy_summary.approval_status,
  ad_group_ad.ad.type,
  metrics.clicks,
  metrics.impressions,
  metrics.ctr,
  metrics.average_cpc,
  metrics.cost_micros
FROM ad_group_ad
WHERE segments.date DURING LAST_7_DAYS
  AND ad_group_ad.status != 'REMOVED'

I think this field [ad_group_ad.policy_summary.approval_status] corresponds 
to the status in the UI.
Below is the possible values of this field 
[ad_group_ad.policy_summary.approval_status]:
APPROVED
APPROVED_LIMITED
AREA_OF_INTEREST_ONLY
DISAPPROVED
UNKNOWN
UNSPECIFIED

The values of status in the UI are as follows:
Eligible
Eligible(Limited)
Not eligible
Paused
Removed

How do we map these values of [ad_group_ad.policy_summary.approval_status] 
by invoking Google ADS api to the value of status on the page?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/9c6d418e-bce4-4f2f-a38d-cb50a07adecdn%40googlegroups.com.


RE: Retrieve all the products from the Google Adwords with Conversion details

2022-07-21 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi Rukesh,

Thank you for raising this concern to the Google Ads API Forum.

To answer your questions in general, you may try to remove the date filter 
because the data defaults to all when no date filter is set. Let me know what 
goes after.

Best regards,

Jinky
Google Ads API Team
ref:_00D1U1174p._5004Q2bmHuL:ref

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


Re: There are any way to find a parent ad (original ad) of an Variations AD ?

2022-07-21 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi,

Thank you for the reply. It seems that my response is not visible on that 
thread. With this, allows me to reiterate this below:

"I understand your concern about "to find a parent ad (original ad) of an 
Variations AD". Unfortunately, this feature is not yet supported by the Google 
Ads API as mentioned by my colleague. However, allow me to raise a feature 
request to the rest of my team, subject for a review. For now, you may keep an 
eye on our blog post and to the New and Improved in the Google Ads API for 
updates or announcements when it becomes available."

Best regards,

Jinky
Google Ads API Team
ref:_00D1U1174p._5004Q2bmHTq:ref

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


Re: Access an ad account via API which is not under any ad manager account

2022-07-21 Thread Techsupport L2L
*For your concern “I would like to know that can I access any individual ad 
account which is not under any ad manager account via Google Ads API?”, 
could you confirm if what you meant here is that the client account does 
not managed by a manager account, and you want to access the client 
account?*
*- Yes, that is what I meant. Client's accounts are not managed by a 
manager account and I want to access them and create/edit campaigns within 
those accounts.*

*If any client account is not under any manager account, then they can 
authenticate using customer_id and valid OAuth credentials. However our 
team is not aware of your tool and how it is configured to access Google 
Ads.*
- *Let me give you brief description about our tool, we have created a 
feature in our website where our clients can connect their ad 
accounts(we've used OAuth) and easily create/manage google ads from there. *
*Now many of our client's ad accounts are not managed by any manager 
account so I would like to know that will our clients be able to connect 
their ad accounts in our websites using OAuth and after that will we be 
able to create/manage campaign for their ad accounts?*

Let me know your views.


Thanks.


On Thursday, July 21, 2022 at 4:04:07 PM UTC+5:30 adsapi wrote:

> Hi,
>
> Thanks for reaching out to the Google Ads API Forum.
>
> For your concern “I would like to know that can I access any individual ad 
> account which is not under any ad manager account via Google Ads API?”, 
> could you confirm if what you meant here is that the client account does 
> not managed by a manager account, and you want to access the client account?
>
> If any client account is not under any manager account, then they can 
> authenticate using customer_id and valid OAuth credentials. However our 
> team is not aware of your tool and how it is configured to access Google 
> Ads.
>
> Regards,
> [image: Google Logo] 
> Yasar 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2bmI3A:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/3eb7e4b4-99ab-4bb1-9e76-33f86100e6b7n%40googlegroups.com.


Re: How to enable AverageCpcMicros on GenerateHistoricalMetrics in V11's KeywordPlanService?

2022-07-21 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi Bruce,

Thank you for the clarification.

Moving forward, could you confirm if you have considered checking this 
documentation? I asked this because this document has the steps on how to 
generate historical metrics using the Google Ads API.

Regards,

Carmela
Google Ads API Team
ref:_00D1U1174p._5004Q2bmEgh:ref

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


internal server error. (500) in response to Google Ads API request

2022-07-21 Thread Daria Golubkova


We have received the new Dev token for App Conversion Tracking and 
Remarketing API, created Link ID associated with our mobile game and set up 
an url request to google ads server. Our goal is to create a new conversion 
label for our UA campaigns.

Our request managed to reach the google ads server just once, and then we 
started receiving an error message from the server as follows: “There was 
an internal server error. (500)”


Could anyone please advise how to fix this issue? 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/673053fa-c9d8-414d-9efd-6a8d5bb8c3dfn%40googlegroups.com.


Re: There are any way to find a parent ad (original ad) of an Variations AD ?

2022-07-21 Thread pn...@yrglm-vn.com
Hi Jinky,

I'm so sorry about that. 

But when I reply to thread *case name: "Are there existing any Google ads 
api v10 in order to get "Original ad ID" of variations ads"*. (LINK 
)
Problem is: All my replied messages were deleted so I create new this 
thread :  There are any way to find a parent ad (original ad) of an 
Variations AD ?  "

Can you explain for me the reason I can't continue reply to thread *case 
name: "Are there existing any Google ads api v10 in order to get "Original 
ad ID" of variations ads"*. (LINK 
)

I so sorry because I make trouble for you and your team.

===
* P/S: I attach image to you can ref below

[image: ask_gg_20220721-v2.png]
On Thursday, July 21, 2022 at 4:09:51 PM UTC+7 adsapi wrote:

> Hi,
>
> You have reached the Google Ads API Forum.
>
> I could see that you've created another email thread with the same 
> concerns mentioned in this *case name: "Are there existing any Google ads 
> api v10 in order to get "Original ad ID" of variations ads"*. Please 
> refrain from opening multiple email threads with the same content for 
> better tracking of the issue. Let's continue our conversation on 
> the other thread you've created as I already respond there and raise this 
> to the rest of the team.
>
> Best regards,
> [image: Google Logo] 
> Jinky 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2bmHTq:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/791a8a50-9874-478c-a98e-0428e89a101dn%40googlegroups.com.


Create Search Terms via GoogleAds API

2022-07-21 Thread Cantare John
Is it possible to create new search terms with googleads 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/d1d3d073-8761-464b-95e7-3d640adc8c44n%40googlegroups.com.


Re: How to enable AverageCpcMicros on GenerateHistoricalMetrics in V11's KeywordPlanService?

2022-07-21 Thread Bruce Axtens
Hello Carmela

Yes, I am aware of the setting you describe. I have it in code already as 
request.HistoricalMetricsOptions = new 
HistoricalMetricsOptions()
{
IncludeAverageCpc = true
};
However, this targets KeywordPlanIdeaService via
KeywordPlanIdeaServiceClient keywordPlanIdeaService =
client.GetService(Services.V11.KeywordPlanIdeaService);

And this is NOT what I'm asking about. I am asking about the 
KeywordPlanService via
KeywordPlanServiceClient kpServiceClient = 
client.GetService(Services.V11.KeywordPlanService);

So what I want is the Cpc in the historical results derived from 
the GenerateHistoricalMetrics() call on KeywordPlanService not on the 
KeywordPlanIdeaService.

Kind regards,
Bruce.

On Thursday, July 21, 2022 at 2:29:49 PM UTC+8 adsapi wrote:

> Hi Bruce,
>
> Thank you for raising this concern to the Google Ads API team. Informing 
> you that I had to delete your initial post as it contained your logs.
>
> Reiterating your post without the logs: 
>
> "
>
> *I am making a request for historical data using the 
> GenerateHistoricalMetrics method on the Services.V11.KeywordPlanService 
> service. In the results that are returned the HasAverageCpcMicros field is 
> false and therefore there is nothing but zero in AverageCpcMicros. What do 
> I have to add to my KeywordPlan to enable this value? For reference, my 
> sources are publicly available on github 
> , and a full trace log 
> and the output JSON are attached.*"
>
> Moving forward to your concern,  I can see that this is mainly about the 
> *GenerateHistoricalMetrics *method. That being said, upon checking, 
> please note to set this include_average_cpc 
> 
>  field 
> in your request.
>
> Regards,
> [image: Google Logo] 
> Carmela 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2bmEgh:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/42cae272-379e-46a2-82b7-277f6ece2483n%40googlegroups.com.


Access an ad account via API which is not under any ad manager account

2022-07-21 Thread Techsupport L2L
Hello,

I would like to know that can I access any individual ad account which is 
not under any ad manager account via Google Ads API?

We've many clients who have an ad account but they are not under any ad 
manager account and they would like to access our tool and manage their ads 
from our tool.

So can you please let me know if that will be doable or not? if not can you 
please provide alternative solution for that?


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/cd85c603-0b80-4aaf-9364-284c6d14a2c7n%40googlegroups.com.


Retrieve all the products from the Google Adwords with Conversion details

2022-07-21 Thread Rukesh Prajapati
Hello all,

I am working with Google Ads API 
(https://developers.google.com/google-ads/api/docs/client-libs/php).
My goal is to retrieve all the product info from my google 
Adwords(https://prnt.sc/T7jUz9nZ7fIm).

I need all products with its name, id, clicks, conversions, costs etc.

I tried to retrieve those with below query:

SELECT  segments.product_item_id,  segments.product_title,  metrics.clicks, 
 metrics.cost_micros,  metrics.impressions,  metrics.conversions, 
 metrics.all_conversions FROM  shopping_performance_view WHERE 
segments.date DURING LAST_30_DAYS

I could get the product info. However, I need info from ALL_TIME instead of 
LAST_30_DAYS. How do I do that?
I guess All_TIME is not supported here in google ads api. It only exists in 
Adwords API(deprecated).


Also, I received only limited number of products. Not all product were 
there.


How could I retried all products from ALL_TIME? 

Is my query above correct approach to get products? Or, is there another 
way for it?

Regards,
Rukesh

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/c765eb4b-0646-474c-8bf7-35cc92285cd7n%40googlegroups.com.


Re: Listed Recommendations are NOT available through API

2022-07-21 Thread SUBIN P VASU
Hi,

I want to know, specifically, that under which category, listed in the API 
documentation, the very first Recommendation shown in the Ads UI resides? 
So that I can get it through API

On Thursday, 21 July 2022 at 11:54:41 UTC+5:30 adsapi wrote:

> Hi Subin,
>
> Thank you for reaching us out. I am Sherwin from Google Ads API support 
> team. I hope that you are doing well today.
>
> Moving forward to your concern, the RESPONSIVE_SEARCH_AD falls under the 
> Ads & extensions category in the UI. The RESPONSIVE_SEARCH_AD 
> recommendation tells you to add a new responsive search ad for the 
> improvement of the performance of your account.
>
> Let me know if you have further questions.
>
> Kind regards, 
> [image: Google Logo] 
> Sherwin Vincent 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2bm5fg:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/ba8d5c97-4e85-4471-a2c3-dd31b4f0fd91n%40googlegroups.com.


Re: Getting error when calling GoogleAds api

2022-07-21 Thread Priya Sharma
Hi,
I got the issue. I am calling the below method.Can you suggest to me how to
migrate to the latest version from v8.
I see documentation of migrations from v9 to v10 and higher but not from v8.

[image: image.png]

Priya Sharma | Traffic Acquisition & Core

[image: http://bold.com/bold-email-logo.jpg]
Aykon Tower

Plot No 4, sector -135

Noida , Uttar Pradesh -201301

Bold.com 


On Thu, Jul 21, 2022 at 12:30 PM Google Ads API Forum Advisor
 wrote:

> Hi Priya,
>
> Thank you for reaching out to us.
>
> For our team to further check if you are indeed using v9 when getting this
> error, could you provide the complete API logs  (request
> 
> and response
> 
> with request-id
> )
> generated on your end?
>
> You may then send the requested logs via the Reply privately to author
> option. If this option is not available, you may send the details directly
> to our googleadsapi-supp...@google.com alias instead.
>
> Best regards,
> [image: Google Logo]
> Heidi
> Google Ads API Team
>
>
> ref:_00D1U1174p._5004Q2bmHD4:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/CA%2BsamoG1r05T54uhZVHZRXtZ%3DsYCUHcFNCbfh3n4vq%3DZFMw3Gw%40mail.gmail.com.


Re: question about API limits.

2022-07-21 Thread Jieun Cha
Hi, Thank you for your reply

But, I'm asking again because I can't solve my questions. 
First, we will use the standard access level. 
To summarize the question again, I wonder if other requests (such as 
SearchStream or Mutate requests) affect the limitations of planning 
requests. 
(For example, if there is a search stream request between sending a planned 
service request once per second, will that request be blocked?)

Please check as soon as possible Thank you. :)

2022년 7월 21일 목요일 오후 4시 10분 36초 UTC+9에 adsapi님이 작성:

> Hi Jieun,
>
> Thank you for reaching out to our API support team.
>
> Regarding your concern about Planning Service requests 1 QPS. To start off 
> your plan, please check out our access levels here 
> . 
> Moving forward, you may learn more about the planning services here 
> 
> .
>
> Also, about "*By the way, if there are other API requests(Search stream 
> request, mutate request ...) in between sending 1 Planning Service Request 
> per second, are they counted and blocked? *
>
> *or Planning Service Request, SearchStream request and Mutate request 
> counted as parallel processing and blocked?" *Please keep in mind that 
> a Search or SearchStream request counts as one operation against the user's 
> daily operation quota. One SearchStream request counts as one API operation 
> irrespective of the number of batches.
>
> I hope this helps.
>
>
> Best,
> [image: Google Logo] 
> Anthony Cyril 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2bmFxu:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/3fa7f99f-bb6d-44a3-9176-6218a448197dn%40googlegroups.com.


Re: Extension Upgraded - how to get from API

2022-07-21 Thread Oliver
We're having the same issue.  Using *ad_group_asset* and *customer_asset 
*doesn't 
help.  The upgraded extensions are not returned at any level.

Can you please keep us updated on this forum with the solution to this 
issue?

Oliver

On Wednesday, July 20, 2022 at 8:21:39 PM UTC+1 adsapi wrote:

> Hi Oksana,
>
> Thank you for reaching out to our API support team.
>
> Since you mentioned that using the campaign_asset 
> 
>  
> report is returning empty values, the sitelink asset extension might be 
> associated to a different level. You may also try the below reports and see 
> whether these would return the values you are expecting : 
>
>- ad_group_asset 
>
> 
>  
>- customer_asset 
>
> 
>  
>
> If you are still unable to retrieve details, you may provide our team with 
> your complete request 
> 
>  
> and response 
> 
>  
> logs, and request-id 
> .
>  If 
> you haven't yet, logging can be enabled by navigating to the *Client 
> libraries* 
>  * > 
> Your client library (ex. Java) > Logging* documentation.
>
> You may then send the requested information via the *Reply privately to 
> author* option. If this option is not available, you may send the details 
> directly to our googleadsa...@google.com alias instead.
>
> Best regards,
>
> [image: Google Logo] 
> Peter Laurence 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2bm33p:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/643dd19f-f700-435c-953e-b12cbc2d39f7n%40googlegroups.com.


There are any way to find a parent ad (original ad) of an Variations AD ?

2022-07-21 Thread pn...@yrglm-vn.com
Hi Google ads api team,

I use Google ads api V10 to update tracking_template URL for Ads except 
Variations AD & its parent Ad (original ad).
Problem that I got is:
** within API response' AD attribute, I can know Variations AD but can't 
not find which one is it's parent AD (original ad)*

* Example here:

Group:
|_ A1 (It's not a variations ad)
|_ A2 (It's not a variations ad)
|_ A1' (It's a variations ad. It's create from original ad A1)
|_ B (It's not a variations ad)
|_ C (It's not a variations ad)

*Please let me know there are any way to find a parent ad (original ad) of 
an Variations AD ? *I could not use comparing condition like the same 
headline1,2 to find parent ad.

Thank you so much. 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/32991059-0bd4-4f9a-b6b2-93467c8f5050n%40googlegroups.com.