BatchJobs running 24h+

2022-03-11 Thread Matteo Medda
Hello, we have a series of batchJobs running since yesterday Example: 
customers / 6446882474 / batchJobs / 8425392828 They contain the creation 
of only two campaigns, so it is very strange that they are still running. 
Can you find out what the problem is? PS We use the GoogleAds API v9 (sdk 
php 12.1)

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/bf09a076-fe52-4fb2-9109-1182033d661cn%40googlegroups.com.


Re: Retrieve each campaigns geographic target

2022-03-11 Thread scratch27
Hi Aryeh,

Going with your first query, how do you get the targeted country for the 
campaign please? I understood that we can get the country code like FR for 
France if France is targeted by this campaign?

Thank a lot!

Le jeudi 10 mars 2022 à 15:53:56 UTC+1, adsapi a écrit :

> Hi Scratch,
>
> To get all your targeted and excluded geographic locations per campaign 
> you can query "SELECT campaign.id, 
> campaign_criterion.location.geo_target_constant, 
> campaign_criterion.negative, campaign_criterion.type FROM 
> campaign_criterion WHERE campaign_criterion.type = 'LOCATION'". The 
> negative criterion are the excluded places.
>
> To get metrics per targeted location per campaign you can query "SELECT 
> metrics.clicks, metrics.cost_micros, metrics.conversions, 
> metrics.impressions, campaign_criterion.location.geo_target_constant, 
> campaign.id FROM location_view WHERE segments.date BETWEEN '20220101' AND 
> '20220310'", you can change the date between in the 'WHERE' CLAUSE.
>
> To interpret what a location is, you can query "SELECT 
> geo_target_constant.target_type, geo_target_constant.status, 
> geo_target_constant.resource_name, geo_target_constant.parent_geo_target, 
> geo_target_constant.name, geo_target_constant.id, 
> geo_target_constant.country_code, geo_target_constant.canonical_name FROM 
> geo_target_constant". If you want to know the parent location you can trace 
> it in the results.
>
> Regards,
>
> [image: Google Logo] 
> Aryeh 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2XmRLE: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/02a7e139-f543-4639-b5e3-eeb0f30ab4dbn%40googlegroups.com.


Oddities in the new Ads API

2022-03-11 Thread axtens
I just issued a ` ListAccessibleCustomers` and got a list of supposedly 
accessible customers. However, when I then issued a query against one of 
them, I received a `User doesn't have permission to access customer.` error.

The code, FWIW, is below. The auth flow appears to work, and I suppose 
being able to execute `AccessibleCustomers` means somethings okay enough 
for that. I could be misspecifying the GAQL for all I know. However, the 
GAQL is exactly what's 
at https://developers.google.com/google-ads/api/docs/reporting/example

-- Bruce


```
public static (GoogleAdsClient, UserCredential) AuthoriseFromCFG(string 
cfg, string loginCustomerId, string scopes = GOOGLE_ADS_API_SCOPE, bool 
debug = false)
{
if (debug) Debugger.Launch();
var cfgDict = new Dictionary();
foreach (var keyValue in from line in File.ReadAllLines(cfg) 
select line.Split('='))
{
if (!keyValue[0].StartsWith("#"))
cfgDict[keyValue[0].Trim()] = keyValue[1].Trim();
}

string jsonPath = Path.ChangeExtension(cfg, "json");
dynamic jsonObj = 
JsonConvert.DeserializeObject(System.IO.File.ReadAllText(jsonPath));
string clientId = jsonObj.installed.client_id.Value;
string clientSecret = jsonObj.installed.client_secret;
string developerToken = cfgDict["developer.token"];
string credPathSuffix = Path.GetFileNameWithoutExtension(cfg);

GoogleAdsConfig config = new GoogleAdsConfig();
// Load the JSON secrets.
ClientSecrets secrets = new ClientSecrets()
{
ClientId = clientId,
ClientSecret = clientSecret,

};

// Authorize the user using desktop application flow.
Task task = 
GoogleWebAuthorizationBroker.AuthorizeAsync(
secrets,
scopes.Split(','),
"user",
CancellationToken.None,
new FileDataStore("BOGoogle-" + credPathSuffix, false)
);
UserCredential credential = task.Result;

// Store this token for future use.
string refreshToken = credential.Token.RefreshToken;

// To make a call, set the refreshtoken to the config, and
// create the GoogleAdsClient.
config.OAuth2RefreshToken = refreshToken;
config.DeveloperToken = developerToken;
config.LoginCustomerId = loginCustomerId;
//config.OAuth2AccessToken = credential.Token.AccessToken;
config.OAuth2ClientId = clientId;
config.OAuth2ClientSecret = clientSecret;
config.OAuth2RefreshToken = credential.Token.RefreshToken;
GoogleAdsClient client = new GoogleAdsClient(config);

// Now use the client to create services and make API calls.
// ...
return (client, credential);
}

...

public static string AccessibleCustomers(GoogleAdsClient client, bool debug 
= false)
{
if (debug) Debugger.Launch();
var result = new List();

CustomerServiceClient customerService = 
client.GetService(Services.V8.CustomerService);

try
{
// Retrieve the list of customer resources.
string[] customerResourceNames = 
customerService.ListAccessibleCustomers();

// Display the result.
foreach (string customerResourceName in 
customerResourceNames)
{
result.Add(customerResourceName);
}
}
catch (GoogleAdsException e)
{
return JsonConvert.SerializeObject(new JSONResponse()
{
Error = e.Failure,
Cargo = null
});
}
return JsonConvert.SerializeObject(new JSONResponse()
{
Error = null,
Cargo = result.ToArray()
});
}
public static string Report(GoogleAdsClient client, string 
customerId, string query, bool debug = false)
{
if (debug) Debugger.Launch();

// Get the GoogleAdsService.
GoogleAdsServiceClient googleAdsService = 
client.GetService(Services.V8.GoogleAdsService);
var result = new List();
try
{
// Issue a search request.
googleAdsService.SearchStream(customerId.ToString(), query,
delegate (SearchGoogleAdsStreamResponse resp)
{
// Display the results.
foreach (GoogleAdsRow criterionRow in resp.Results)
{
result.Add(criterionRow);
}
}
);
 

OfflineCallConversionError INVALID_CALL

2022-03-11 Thread Ergys Meda
Hello, I'm getting this Error  [OfflineCallConversionError.INVALID_CALL @ 
operations[0].operand, OfflineCallConversionError.INVALID_CALL @ 
operations[1].operand] when i try to upload offline call conversions. I 
have also those error 
logs 
0005d9ee89286f5802ab47ab8908fc42OfflineCallConversionFeedServicemutate2711.
 

Can anybody help me? 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/1981476d-fc05-4be5-93a1-ea90e8ec40c0n%40googlegroups.com.


Troubles with AccountBudgetProposal

2022-03-11 Thread Sergei Aleinik
Hello! We have a monthly invoicing payment settings and about 2500 customer 
accounts managed with Google Ads API.

We use AccountBudgetProposalService::mutateAccountBudgetProposal() to 
manage account budgets.

Since *2022-03-11 01:00 UTC* we started to encounter error: 
INVALID_ARGUMENT.

*google.ads.googleads.v9.errors.googleadsfailure-bin: "The error code is 
not in this version." operation 1kDLNFeLbpdv6qvSzjp_wA*

*grpc-status-details-bin: Request contains an invalid argument. 
Ctype.googleapis.com/google.ads.googleads.v9.errors.GoogleAdsFailure The 
error code is not in this version." operation 1kDLNFeLbpdv6qvSzjp_wA*

*request-id: 1kDLNFeLbpdv6qvSzjp_wA*

*Example of code*







*$budgetProposal = new AccountBudgetProposal( [   'proposal_type' => 
AccountBudgetProposalType::UPDATE,   'account_budget' => 
'customers/9572721447/accountBudgets/6560075503',   
'proposed_spending_limit_micros' => 5000, ]);*




*$operation = new 
AccountBudgetProposalOperation();$operation->setCreate($budgetProposal);$operation->setUpdateMask(FieldMasks::allSetFieldsOf($budgetProposal));*

*$service->mutateAccountBudgetProposal(9572721447, $operation);*

P. S

In production we use Google Ads API V9. I tried this code in V10, but it 
still returns "*The error code is not in this version*" details.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/27297459-761f-4b69-ad90-1a9a293ddc2bn%40googlegroups.com.


RE: How to update a goals with Python?

2022-03-11 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi there,

Thanks for reaching out to the Google Ads API Forum.

I am afraid that there is no sample code for custom conversion goals, and how 
to update it to your campaign. However, to update the campaign's 
ConversionGoalCampaignConfig, setting the custom_conversion_goal to the 
resource name of the CustomConversionGoal from the previous step, and setting 
the operation's update_mask to custom_conversion_goal.

You can find here, the guide regarding conversion / campaign goals. This guide 
then provides more information on how you may manage your campaign goals.

You can then use the below services :

CampaignConversionGoalService - to manage your campaign goals
CustomConversionGoalService - for managing custom goals
CustomerConversionGoalService - to manage customer conversion goals

Let us know if you have any further questions.

Regards,

Yasar
Google Ads API Team
ref:_00D1U1174p._5004Q2XnXhh: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/5MQtD0R8KURL00-ZRFfuuHQ8ilBAgawlWUQg%40sfdc.net.


Google Enhanced Conversion API | v1 | Technical specifications

2022-03-11 Thread 'ca_partners' via Google Ads API and AdWords API Forum
Hello,
 we're looking for the Google Enhanced Conversion "Legacy" specifications 
(v1) that uses this endpoint: https://www.google.com/ads/event/api/ 
We know there's a newest version based on the "Google Ads API" (Ref. here), 
but we also want to support this old version for clients that don't want to 
migrate yet.

Many thanks,
/ca_partners

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/30e3579b-856a-4114-b7d4-6d10fe7ff31bn%40googlegroups.com.


RE: RESOURCE EXHAUSTED errors from the Google Ads Historical Metrics API

2022-03-11 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi Json,

Thanks for reaching out to the Google Ads API Forum.

Could you provide us with the complete request and response logs with the 
request-id generated where we can see the RESOURCE_EXHAUSTED errors, so our 
team can check better?

If you’re using a 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. If this option is not available, you may send the details directly to 
our googleadsapi-supp...@google.com alias instead by adding reference of this 
thread.

Regards,

Yasar
Google Ads API Team
ref:_00D1U1174p._5004Q2XnYGn: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/-nad30R8KW5300IJttvP0-RwyVuQ4lq1wdMg%40sfdc.net.


Re: Keyword PolicyViolationDetails in BatchJobService

2022-03-11 Thread stefano...@webrepublic.ch
Hi Aryeh,

Is there an update about this? Unfortunately, as of v10 PolicyViolationKeys 
are still not returned by the batch job.

Cheers

On Wednesday, December 1, 2021 at 11:07:05 PM UTC+1 adsapi wrote:

> Hi Ichiba,
>
> Thank you for privately sending us the log. I raised your request for 
> adding the PolicyViolationKey in the keyword in a batchJob with my 
> team. This request is subject to review. You may monitor our blog 
>  for 
> an update.
>
>
> Reminder: Share your feedback about the Google Ads (AdWords) API! Take the 
> 2021 
> Google Ads API and AdWords API Annual Survey 
> 
>  
> Regards, 
> [image: Google Logo] 
> Aryeh Baker 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2Rvu4j: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/d8e89bfc-14a1-41be-ad8d-9ba121b68048n%40googlegroups.com.


Using gRPC AsyncIO with Google Ads API python client?

2022-03-11 Thread Yann
Hi Google Ads API support team,

Is it possible to change the transport layer of Google Ads API python 
client to use gRPC AsyncIO API 
?

Thank you and best regards,
Yann

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/25bb0c72-3e36-4328-bece-6fc0a4aae95dn%40googlegroups.com.


Metrics from Google Ads API

2022-03-11 Thread 'Jonathan Wilmont' via Google Ads API and AdWords API Forum
Hello,

We are having issues with the new api metrics not matching what is shown in 
the adwords ui. The below is what is being used to get the data:

SELECT ad_group_ad.ad.id, ad_group.id, campaign.id, ad_group_ad.ad.name, 
ad_group.name, campaign.name, ad_group_ad.ad.text_ad.headline, 
ad_group_ad.ad.text_ad.description1, ad_group_ad.ad.text_ad.description2, 
ad_group_ad.ad.display_url, ad_group_ad.ad.image_ad.image_url, 
ad_group_ad.ad.final_urls, segments.ad_network_type, ad_group_ad.status, 
ad_group.status, campaign.status, metrics.clicks, metrics.impressions, 
metrics.ctr, metrics.average_cpc, metrics.cost_micros, metrics.conversions, 
metrics.cost_per_conversion FROM ad_group_ad

None of the metrics match what is shown in the adwords ui when filtering by 
all time.

Any help with this is appreciated.

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/c85851b3-eb7f-475a-bd44-82e2ecc90640n%40googlegroups.com.


RE: Query on Google Ads API Logging

2022-03-11 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi there,

Thanks for reaching out to the Google Ads API Forum.

I can see that you’re using ​​Log4j 1.2 (legacy) version. I do not see the 
added dependency for the slf4j-jdk14 library in your pom. You may verify if 
your configuration has already completed the steps mentioned in this logging 
guide. If you are still unable to generate, then I recommend you to reach out 
to the Java client library owner by filing an issue on the issue tracker on the 
Issue tab of your client library on github, so that they can provide guidance 
on it.

Let us know if you have any additional questions.

Regards,

Yasar
Google Ads API Team
ref:_00D1U1174p._5004Q2XnZHM: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/rvV170R8L2KK00AA_e7nj9QK6Gfjh3bSQuaw%40sfdc.net.


RE: billing transactions api

2022-03-11 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi there,

Thanks for reaching out to the Google Ads API Forum.

Is the provided screenshot an invoice view using Ads UI? Could you provide us 
with the complete Ads UI screenshot, and steps to navigate using the UI in 
order to see cost and adjustments fields? This is so that our API support team 
can accurately verify the feature to provide the specific recommendation or 
create a feature request. Kindly provide the screenshot via Reply to author 
privately option as it may have sensitive details.

Regards,

Yasar
Google Ads API Team
ref:_00D1U1174p._5004Q2XnZN0: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/5pn6K0R8L2L400mKd0LWUTTrqmz5JSnzyTdw%40sfdc.net.


RE: Getting BiddingStrategy as null in Adgroup

2022-03-11 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi there,

Thanks for reaching out to the Google Ads API Forum.

Kindly note that bid strategy can only be set at the campaign level. Please 
make sure that the campaign(1537460285) in your query already has a 
bidding_strategy. If the campaign doesn't have it, then it will not return your 
query. For more information, you may refer to this guide.

Regards,

Yasar
Google Ads API Team
ref:_00D1U1174p._5004Q2XnZgR: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/blzPW0R8L2MN00_bUbbto_RxirzoXSJ-u4sQ%40sfdc.net.


RE: OfflineCallConversionError INVALID_CALL

2022-03-11 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi Ergys,

Thank you for reaching out to us.

The OfflineCallConversionError.INVALID_CALL occurs when we are unable to import 
a conversion for this call, since either this call or the click leading to the 
call was not found in our system. Could you please ensure that your uploaded 
clicks really belong to the account of your credential used to make SOAP calls. 
To ensure the clicks are really belongs to that account, please run the Click 
Performance Report for the targeted client account around the date the click is 
generated and see if that GCLID is present on the reports. If not that click 
doesn't belongs to the targeting account.

If you still encounter the same issue after following the steps mentioned 
above, kindly provide the complete SOAP request and response logs when 
importing the conversion so we could better assist you. 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,

Princess Pamela
Google Ads API Team
ref:_00D1U1174p._5004Q2Xnb0w: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/rX_7E0R8L3VY00xZpW2KyBQgmHBwFZ6oh7WQ%40sfdc.net.


Keyword ID from Keyword View

2022-03-11 Thread Dig Wallace
Hi all, I'm having trouble finding the mapping for the old Keyword ID 
metric in this report:
https://developers.google.com/adwords/api/docs/appendix/reports/keywords-performance-report

to the new Ads report from the keywordView:
https://developers.google.com/google-ads/api/fields/v8/keyword_view

Am I missing something?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/9971cfd7-b9a5-4f04-b659-840e80d79fb8n%40googlegroups.com.


Re: Keyword ID from Keyword View

2022-03-11 Thread Dig Wallace
Futhermore, I'm having trouble mapping the AveragePosition field as well.

On Friday, March 11, 2022 at 9:46:13 AM UTC-5 Dig Wallace wrote:

> Hi all, I'm having trouble finding the mapping for the old Keyword ID 
> metric in this report:
>
> https://developers.google.com/adwords/api/docs/appendix/reports/keywords-performance-report
>
> to the new Ads report from the keywordView:
> https://developers.google.com/google-ads/api/fields/v8/keyword_view
>
> Am I missing something?
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/27980296-5af1-4212-918e-fc9fd8b0a6d8n%40googlegroups.com.


RE: BatchJobs running 24h+

2022-03-11 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi Matteo,

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

To investigate the issue further, could you please provide the complete request 
and response logs, with the request-id?

If you’re using a 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. If this option is not available, you may send the details directly to 
our googleadsa...@google.com alias instead by adding reference of this thread.

Thanks,

Nirmita
Google Ads API Team
ref:_00D1U1174p._5004Q2XnaHX: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/oD44y0R8L5PL00wNhAbn9zQN-DJXTUCljqLQ%40sfdc.net.


Average Position metric from KeywordView

2022-03-11 Thread Dig Wallace
 Hi all, I'm having trouble mapping the AveragePosition metric listed in 
this report:
https://developers.google.com/adwords/api/docs/appendix/reports/keywords-performance-report

to the new Ads report from the keywordView:
https://developers.google.com/google-ads/api/fields/v8/keyword_view

Am I missing something?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/f55d8c6a-0fdf-4887-894b-a0a3ce8f5facn%40googlegroups.com.


RE: Oddities in the new Ads API

2022-03-11 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi Axtens,

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

With regards to your concern, you’ve encountered ‘USER_PERMISSION_DENIED' 
error. The ‘USER_PERMISSION_DENIED’ usually occurs due to incorrectly setting 
the 'login-customer-id’ in the request or not specifying login-customer-id in 
the request. Note that when a user doesn't have permission to access a customer 
and you’re accessing a client customer then the manager's customer ID must be 
set in the 'login-customer-id’ in the header request.

To resolve this, you will need to ensure that your OAuth2 credentials were 
generated while logged in as the user / email address that has access to the 
customer ID in your request. Also, if the said user / email address is one that 
has access to the MCC / manager of the customer account, then you may specify 
the MCC / manager account's ID as the login-customer-id.


If you are still facing issue, Could you provide us with the complete request 
and response logs with the request-id generated, so our team can check better?

If you’re using a 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. If this option is not available, you may send the details directly to 
our googleadsa...@google.com alias instead by adding reference of this thread.

Thanks,

Nirmita
Google Ads API Team
ref:_00D1U1174p._5004Q2XnafF: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/WqO5Q0R8L96300pKWYW0fIS8mOFPC20dPcJA%40sfdc.net.


Re: Google Ads Migration for AUDIENCE_PERFORMANCE_REPORT

2022-03-11 Thread Poojitha Gandra
Hi,

I am facing a similar issue with Audience_performance report. While the 
adwords is sending the data for all the accounts we have , google ads API 
is only sending the data for 3 accounts. 

I am using the same date range as you mentioned. 
please let me know what kind of info you need from my end 

On Monday, March 7, 2022 at 8:34:38 PM UTC-5 adsapi wrote:

> Hi Hao,
>
> Thank you for posting your concern.
>
> I would like to inform you first that I am going to delete your initial 
> post as it contains generated logs. However, I will specify below the copy 
> of your concern with redacted logs and some details.
>
> Moving forward, I wasn't able to replicate the issue on my end when I 
> impersonated the campaign_audience_view report with your GAQL in your 
> account as I can get the 8 campaigns there. However, I can see that logs 
> are truncated on your end so you can't see the full API logs of the 
> *campaign_audience_view*. With this, you can follow this guide 
> 
>  
> so that the API logs will not be truncated.
>
> Also, when comparing the reports of the Google Ads API and AdWords API, 
> please ensure using the same date range.
>
> "
>
>
>
>
>
>
>
>
>
> *For AUDIENCE_PERFORMANCE_REPORT we have two download jobs depend on 
> Google Adwords API and we are currently work on migrate to Google Ads API. 
> The two download jobs one for performance and one for structure, and the 
> AWQL attached as below: AWQL here Base on Google Ads wiki there have two 
> resources(ad_group_audience_view and campaign_audience_view) mapped with 
> Google Adwords AUDIENCE_PERFORMANCE_REPORT. these two resources identify 
> the audience setup on ad group and campaign level. to get the same download 
> data as Google Adwords API we need query these two resources at the same 
> time and union the data download from ad_group_audience_view and 
> campaign_audience_view. but we found there have some data issues when 
> compare the download data from Adwords API and Ads API, detail list as 
> below: let's take structure data on account:redacted Id as example: we only 
> could download three campaigns(redacted Ids) data from Google Ads API 
> campaign_audience_view and empty data from ad_group_audience_view ,but 
> could download  8 campaigns(redacted Ids) from Google Adwords API. Could 
> you please help identify the root cause?*"
>
>
> Regards,
> [image: Google Logo] 
> Ernie John 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2Xm3jy: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/10af339f-aa5e-4a24-88b1-e0433d5f6a7dn%40googlegroups.com.


Testing account and Where ads showed

2022-03-11 Thread Ataina00
Hello, 

I create a testing account in order to eventually test a google ads 
extension. 
And I'm facing some difficulties because i'd like to add some placement in 
where ads showed. 
But I can't do that since it's an historice. 

Do you know how I can work around that ? 

Thank you ! 

Ataina 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/9186eea7-e1e7-49e6-9a98-9b679865ad83n%40googlegroups.com.


Audience performance Report

2022-03-11 Thread Poojitha Gandra
Hi,

I am migrating audience performance report from google adwords to google 
ads API using ad_group_audience_view to retrieve the ad group information 
as well. Google ads API isnt sending me any rows for all my accounts. Below 
are the accounts for which i am receiving the data for while adowrds API is 
send me in data for all of my accounts under  *8631872757 (NerdWallet 
Adwords MCC Manager, USD, America/Los_Angeles)*

Nerdwallet Brand -7940469371

Nerdwallet CC - 4000923014

Nerdwallet youtube- 6610796997

*Query:*
SELECT segments.date, customer.currency_code, customer.descriptive_name, 
customer.time_zone, ad_group.id, ad_group.name, ad_group.status, 
segments.ad_network_type, metrics.all_conversions_from_interactions_rate, 
metrics.all_conversions, metrics.all_conversions_value, 
ad_group.base_ad_group, campaign.base_campaign, bidding_strategy.id, 
bidding_strategy.name, bidding_strategy.type, campaign.id, campaign.name, 
campaign.status, metrics.clicks, metrics.cost_micros, 
ad_group_criterion.effective_cpm_bid_micros, 
ad_group_criterion.effective_cpm_bid_source, customer.descriptive_name, 
segments.device, customer.id, ad_group_criterion.final_mobile_urls, 
ad_group_criterion.final_urls, metrics.gmail_forwards, metrics.gmail_saves, 
metrics.gmail_secondary_clicks, metrics.impressions, 
metrics.interaction_rate, metrics.interactions, 
metrics.interaction_event_types, 
ad_group.targeting_setting.target_restrictions, ad_group_criterion.status, 
ad_group.tracking_url_template, ad_group.url_custom_parameters, 
metrics.value_per_all_conversions, metrics.value_per_conversion, 
metrics.video_view_rate, metrics.video_views, 
metrics.view_through_conversions, ad_group_criterion.bid_modifier, 
ad_group_criterion.user_list.user_list, 
ad_group_criterion.user_interest.user_interest_category, 
ad_group_criterion.custom_affinity.custom_affinity, 
ad_group_criterion.custom_intent.custom_intent, 
ad_group_criterion.criterion_id FROM ad_group_audience_view where 

Am i missing something here, please let me know what can be done!  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/bdb66e43-3b7b-4762-b98b-9e830626f879n%40googlegroups.com.


Re: Audience performance Report

2022-03-11 Thread Poojitha Gandra
I meant to say adwords API is sending me rows for all the accounts under my 
manager account, while google Ads API is sending rows for only 3 accounts 
mentioned

On Friday, March 11, 2022 at 12:13:02 PM UTC-5 Poojitha Gandra wrote:

> Hi,
>
> I am migrating audience performance report from google adwords to google 
> ads API using ad_group_audience_view to retrieve the ad group information 
> as well. Google ads API isnt sending me any rows for all my accounts. Below 
> are the accounts for which i am receiving the data for while adowrds API is 
> send me in data for all of my accounts under  *8631872757 (NerdWallet 
> Adwords MCC Manager, USD, America/Los_Angeles)*
>
> Nerdwallet Brand -7940469371
>
> Nerdwallet CC - 4000923014
>
> Nerdwallet youtube- 6610796997
>
> *Query:*
> SELECT segments.date, customer.currency_code, customer.descriptive_name, 
> customer.time_zone, ad_group.id, ad_group.name, ad_group.status, 
> segments.ad_network_type, metrics.all_conversions_from_interactions_rate, 
> metrics.all_conversions, metrics.all_conversions_value, 
> ad_group.base_ad_group, campaign.base_campaign, bidding_strategy.id, 
> bidding_strategy.name, bidding_strategy.type, campaign.id, campaign.name, 
> campaign.status, metrics.clicks, metrics.cost_micros, 
> ad_group_criterion.effective_cpm_bid_micros, 
> ad_group_criterion.effective_cpm_bid_source, customer.descriptive_name, 
> segments.device, customer.id, ad_group_criterion.final_mobile_urls, 
> ad_group_criterion.final_urls, metrics.gmail_forwards, metrics.gmail_saves, 
> metrics.gmail_secondary_clicks, metrics.impressions, 
> metrics.interaction_rate, metrics.interactions, 
> metrics.interaction_event_types, 
> ad_group.targeting_setting.target_restrictions, ad_group_criterion.status, 
> ad_group.tracking_url_template, ad_group.url_custom_parameters, 
> metrics.value_per_all_conversions, metrics.value_per_conversion, 
> metrics.video_view_rate, metrics.video_views, 
> metrics.view_through_conversions, ad_group_criterion.bid_modifier, 
> ad_group_criterion.user_list.user_list, 
> ad_group_criterion.user_interest.user_interest_category, 
> ad_group_criterion.custom_affinity.custom_affinity, 
> ad_group_criterion.custom_intent.custom_intent, 
> ad_group_criterion.criterion_id FROM ad_group_audience_view where 
>
> Am i missing something here, please let me know what can be done!  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/85a062d0-b240-4562-ae10-fbe7226afb48n%40googlegroups.com.


Re: The same keyword have different keywordthemeconstant id.

2022-03-11 Thread Kevin
Hi,

Might have clicked the wrong "Reply" button when I tried earlier so 
apologies if this is a double post.
I've encountered similar issues with a mismatch between UI and API 
KeywordThemes recently.
I've also seen a few KeywordTheme CampaignCriteria that resolved to the 
same KeywordThemeConstant (despite having different values in the UI).

Has a fix to the issue from this thread already been pushed?

Thanks,
Kevin

On Friday, January 7, 2022 at 1:57:52 AM UTC-8 viviana...@gmail.com wrote:

> So thankful for your reply!
> Regards
> 在2022年1月6日星期四 UTC+8 06:38:04 写道:
>
>> Hi Chen,
>>
>> We have replicated the issue and now know the root cause. However, there 
>> are multiple code changes required at our end to make this work correctly 
>> in the UI and the API. We are discussing how best to fix this issue; I'll 
>> keep you posted as I hear from the team.
>>
>> Cheers
>> Anash 
>>
>> ref:_00D1U1174p._5004Q2Tlmxh: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/2a54399f-fc92-42a6-bc85-0153aacedd18n%40googlegroups.com.


Re: Retrieve each campaigns geographic target

2022-03-11 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi Scratch,

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

With regards to your concern, you can use 
campaign_criterion.proximity.address.country_code=FR. Let me know if you have 
any question.

Thanks,

Nirmita
Google Ads API Team
ref:_00D1U1174p._5004Q2XmRLE: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/XwgW-0R8LJBG009SIWm6BxS1q1vhfvJ5eKwA%40sfdc.net.


Re: Target CPA with Goal Settings

2022-03-11 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi Matteo,

I work with Peter. To attach specific conversion actions to campaigns. you may 
need a custom goal, it appears that all category 'website' conversion actions 
are being linked to your campaign without a custom goal. If the above doesn't 
help, could you send us privately a full screen screenshot of the UI 
demonstrating this?

Regards,

Aryeh
Google Ads API Team
ref:_00D1U1174p._5004Q2XmToS: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/myTQo0R8LLQU00iBthIlrgTiCIgvynSUlljA%40sfdc.net.


Totals/Lifetime Metrics

2022-03-11 Thread Nick Zombolas
Hello!

I'm using the Google Ads API for campaign reporting, and I have a question 
about getting some aggregate data. I'm getting daily data just fine, but I 
would like to get an sum of daily data, or total metrics for the lifetime 
of a campaign. Is there a way to accomplish this?

I have tried using SUM(...) in my queries, but i don't think this is 
supported in GAQL. Is there another method I should be using to sum 
multiple days of data?

Thank you,

Nick

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/09e5b3b0-dbc7-41c3-b84b-98762ff3fb2fn%40googlegroups.com.


Google Ads API: Totals/Lifetime Metrics

2022-03-11 Thread Nick Zombolas
Hello,

I have a question on getting aggregations of data from the Google Ads API. 
What I would like to get is totals values on metrics for google ads 
campaign. For example, if a campaign runs from March 1 to March 8, I would 
like to be able to request for metrics for all days summed up into 1 value. 
I am currently able to get data for each day (good), but is there a way to 
sum up multiple days?

I have tried using `SUM(...)` in my GAQL query, but I don't think this is 
supported. Is there another method of aggregation I should be using?

Thanks in advance!

Nick

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/7e907469-6ca0-4ec9-ae31-df1a30052e25n%40googlegroups.com.


Keword planner api - Russia Problem

2022-03-11 Thread 박주호
Through the python, we check the search volume for 2019-2022 through the 
keyword planner api, which previously worked without problems, and now 
other countries operate without problems, but only Russia does not work.

"geoTargetConstants/2360" (Russia) causes errors. The geo_constant of other 
countries does not cause errors.

And the error message comes out as follows, how can I solve this?

(<_InactiveRpcError of RPC that terminated with:
status = StatusCode.INVALID_ARGUMENT
details = "Request contains an invalid argument."
debug_error_string = 
"{"created":"@1646898908.58300","description":"Error received from peer 
ipv4:172.217.27.42:443","file":"src/core/lib/surface/call.cc","file_line":1067,"grpc_message":"Request
 
contains an invalid argument.","grpc_status":3}"
>, <_InactiveRpcError of RPC that terminated with:
status = StatusCode.INVALID_ARGUMENT
details = "Request contains an invalid argument."
debug_error_string = 
"{"created":"@1646898908.58300","description":"Error received from peer 
ipv4:172.217.27.42:443","file":"src/core/lib/surface/call.cc","file_line":1067,"grpc_message":"Request
 
contains an invalid argument.","grpc_status":3}"
>, errors {
  error_code {
keyword_plan_error: INVALID_VALUE
  }
  message: "The input has an invalid value."
}
request_id: "VE6bXk4poVjuIWJFUIU-KA"
, 'VE6bXk4poVjuIWJFUIU-KA')

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/fea0f214-48bd-4b84-abbb-3d87187fe56bn%40googlegroups.com.


Adwords API, CampaignCriterionService migrate to Googe Ads API

2022-03-11 Thread jubap...@gmail.com
Hi, 
I want to get campaign criteria by selector fields using python code.
I am using the paging method: 
page = campaign_criterion_service.get(selector)
selector = {
   'fields': ['CampaignId', 'Id', 'CriteriaType', 'PlatformName',
  'LanguageName', 'LocationName', 
'KeywordText','IsNegative','KeywordMatchType',
  
'UserListId','UserListName','BidModifier','CampaignCriterionStatus','BaseCampaignId'],
   'paging': {
 'startIndex': str(offset),
 'numberResults': str(PAGE_SIZE)
},
   'predicates': [{
   'field': 'CampaignId',
   'operator': 'IN',
   'values':campaignidlist
   },{
   'field': 'IsNegative',
   'operator': 'EQUALS',
   'values': str(isNegative)
   },
   {
   'field': 'CriteriaType',
   'operator': 'EQUALS',
   'values': CriteriaType
   }]
 }
Now I want to migrate those to Google Ads API. I know that the report 
service has a resource mapping document. However, the service only has a 
corresponding service without a mapping selector form.
I used SearchGoogleAdsStreamRequest to get the data frame and construct 
them to operations. for a service call.
Like I know for GAQL campaign id is campaign.id,  Id in this file 
is campaign_criterion.criterion_id. 
But I couldn't find 'PlatformName', 'LanguageName', 'LocationName', in 
campaing criterion 
table. 
https://developers.google.com/google-ads/api/docs/migration/mapping#campaign_criteria

If I want to use SearchGoogleAdsStreamRequest to get the form with those 
selectors, 
is there an easier way to map the corresponding GAQL? 

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/cc7c76bb-857c-4045-adc0-5b9376cd86d9n%40googlegroups.com.