Regarding shopping_performance_view segmenting resources.

2022-11-23 Thread 'Adithya A S' via Google Ads API and AdWords API Forum
Campaign is a part of segmenting resources for shopping_performance_view so 
when made a query including campaign.optimisation_score in the select 
clause for a particular segments.product_title we are getting only a single 
result of campaign.optimisation_score but according to documentation 
shouldn't it segment based on different optimisation_scores?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/d9a9c8e6-dfe4-409e-b5bb-e775708e7408n%40googlegroups.com.


RE: Regarding shopping_performance_view segmenting resources.

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

Thanks for reaching out to the Google Ads API team. I hope you are doing well 
today.

With regards to your concern, yes you are correct that the Campaign resource is 
a part of segmenting resources for shopping_performance_view. As per this 
document said, "When selecting from some resources, you may have the option to 
implicitly join on related resources by selecting their fields alongside the 
fields of the resource in the FROM clause. These related resources can be found 
in the Attributed Resources list on the resource in the FROM clause's metadata 
page. In the case of the ad_group resource, you'll see that you can also select 
fields from the campaign resource. The resource_name field of any Attributed 
Resources with at least 1 field in the SELECT clause will automatically be 
returned, even when the resource_name field is not explicitly included in the 
query."

Regards,

Darwin
Google Ads API Team
ref:_00D1U1174p._5004Q2gS1rx: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/FbKUQ0RLSWGW007mEQFSvwSN6IBMOzgkFH3Q%40sfdc.net.


Create Performance Max with Shopping Setting Object

2022-11-23 Thread Fadime Günay
Hi,

We create Performance Max Campaign with google ads api (v11). 

new MutateOperation([
'campaign_operation' => new CampaignOperation([
'create' => new Campaign([
'name' => self::PERFORMANCE_MAX_CAMPAIGN_NAME,
'resource_name' => ResourceNames::forCampaign(
$customer_id,
self::PERFORMANCE_MAX_CAMPAIGN_TEMPORARY_ID
),
'campaign_budget' => ResourceNames::forCampaignBudget(
$customer_id,
self::BUDGET_TEMPORARY_ID
),
'status' => CampaignStatus::ENABLED,
'advertising_channel_type' => AdvertisingChannelType::PERFORMANCE_MAX,
'maximize_conversion_value' => new MaximizeConversionValue(),
'url_expansion_opt_out' => false,
'start_date' => date('Ymd')
])
])
]);
- 
We send request like this,  return succes response from request. But when 
 added Shopping Setting Object inside new Campaign object, get 
INVALID_ARGUMENT Error for some assert group operations. that error as 
example;  NOT_ENOUGH_SQUARE_MARKETING_IMAGE_ASSET, 
 NOT_ENOUGH_LONG_HEADLINE_ASSET. 
---
new MutateOperation([
'campaign_operation' => new CampaignOperation([
'create' => new Campaign([
'name' => self::PERFORMANCE_MAX_CAMPAIGN_NAME,
'resource_name' => ResourceNames::forCampaign(
$customer_id,
self::PERFORMANCE_MAX_CAMPAIGN_TEMPORARY_ID
),
'campaign_budget' => ResourceNames::forCampaignBudget(
$customer_id,
self::BUDGET_TEMPORARY_ID
),
'status' => CampaignStatus::ENABLED,
'advertising_channel_type' => AdvertisingChannelType::PERFORMANCE_MAX,
'maximize_conversion_value' => new MaximizeConversionValue(),
'url_expansion_opt_out' => false,
'shopping_setting' => new Campaign\ShoppingSetting([
'sales_country' => 'TR',
'merchant_id' => $merchant_id,
'enable_local' => true
]),
'start_date' => date('Ymd')
])
])
]);
---
Us intention create Seller and Comparison Shopping Service header with 
Merchant Center Account inside Performance Max Campaign. 

Can you help us about this subject?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/41242ed5-aca7-4ec6-bb4f-bab87edfc3b6n%40googlegroups.com.


È AVVOCATO ASSASSINO: #CRISTINAROSSELLO CRISTINA ROSSELLO DI FORZA ITALIA MAFIOSA #FORZAITALIA MAFIOSA E COMUNIONE E LIBERAZIONE #COMUNIONEELIBERAZIONE (DOVE MAFIA CON DA SEMPRE LAVA SOLDI MAFIOSI, #G

2022-11-23 Thread FRANCESCO PERILLI EQUITA SIM MILAN
È AVVOCATO ASSASSINO: #CRISTINAROSSELLO CRISTINA ROSSELLO DI FORZA ITALIA 
MAFIOSA #FORZAITALIA MAFIOSA E COMUNIONE E LIBERAZIONE 
#COMUNIONEELIBERAZIONE (DOVE MAFIA CON DA SEMPRE LAVA SOLDI MAFIOSI, 
#GIOVANNIRAIMONDI GIOVANNI RAIMONDI DI MATER OLBIASPA #MATEROLBIA 
SPA, EX POLICLINICO GEMELLI #POLICLINICOGEMELLI, EX FACCENDIERE TRIPLA 
FACCIA, FACENTE MEGA DELINQUENZE FINANZIARIE, VIA FAMIGLIA MALAVITOSA 
#LIGRESTI LIGRESTI, COSA SEMPRE FATTA PURE, DA SUPER CRIMINALE ED ASSASSINA 
CRISTINA ROSSELLO #CRISTINAROSSELLO STESSA) ! È POLITICO BERLU$CORROTTO & 
KILLER: #CRISTINAROSSELLO CRISTINA ROSSELLO (UNITED AT NAZI卐KILLER 
#CARLTONDEAL CARLTON DEAL FROM SATANIST SECT "SERVE THE CITY #SERVETHECITY" 
AS WELL AS SATANIC SATANIC SECT "THE WELL #THEWELL", AS WELL AS MURDERING 
KIND OF FREEMASONRY #FREEMASONRY, MURDERING KIND OF ROTARY #ROTARY AND 
MURDERIN KIND OF LIONS CLUBS #LIONSCLUBS)! PER CONTO DI PEDOFILI STRAGISTI 
#MASSIMODORIS MASSIMO DORIS DI CRIMINALISSIMA #MEDIOLANUM MEDIOLANUM, 
#SILVIOBERLUSCONI SILVIO BERLUSCONI, #MARINABERLUSCONI MARINA BERLUSCONI, 
#PIERSILVIOBERLUSCONI PIERSILVIO BERLUSCONI E #FEDELECONFALONIERI FEDELE 
CONFALONIERI, TRAMA A MORTE EROI ANTI MAFIA E NAZISMO DI SOCIETÀ  DI COSA 
NOSTRA: #FININVEST, FININVEST, #MEDIASET MEDIASET, #MFE #MEDIAFOREUROPE MFE 
MEDIA FOR EUROPE E #MONDADORI MONDADORI!

L'AVVOCATO PEDOFILO, LESBICONE, MASSO^NAZI卐FASCISTA, CORROTTO, LADRO E 
KILLER CRISTINA ROSSELLO DI MAFIOSA E HITLERIANA #FORZAITALIA FORZA ITALIA 
E DELINQUENZIALI TIPI DI MASSONERIA NEO P2ISTA ASSASSINA, ROTARY #ROTARY 
ASSASSINO, #LIONSCLUBS LIONS CLUBS ASSASSINI, KIWANIS #KIWANIS ASSASSINI, 
CLUB DIPLOMATIA #CLUBDIPLOMATIA ASSASSINO, CLUB CANOVA #CLUBCANOVA 
ASSASSINO, RICICLA TANTISSIMI SOLDI MAFIOSI, VIA SUO CRIMINALISSIMO 
#ROSSELLOFAMILYOFFICE ROSSELLO FAMILY OFFICE DI LONDRA
http://www.cristinarossello.it/EN/rfo.html
(IN COLLABORAZIONE CON CRIMINALISSIMO MASSONE NAZISTA E COMPLOTTARDO 
CARLTON DEAL
https://twitter.com/carlton_deal)

LA LECCA FIGA DI RAGAZZINE 13 ENNI, LA VOMITEVOLE PEDOFILA ED OMICIDA 
CRISTINA ROSSELLO #CRISTINAROSSELLO UNITA AL PEDOFILO ASSASSINO FEDELE 
CONFALONIERI #FEDELECONFALONIERI DI #MEDIASET MEDIASET ALIAS MAFIASET O 
#MFE ALIAS MAFIA FOR EUROPE, COMPLOTTANO A MORTE, EROI ANTI MAFIA E NAZISMO 
DI SILVIO BERLUSCONI #SILVIOBERLUSCONI, #BERLUSCONI, NEL MONDO INTERO!

LA LECCA FIGA DI RAGAZZINE 13 ENNI, LA VOMITEVOLE PEDOFILA ED OMICIDA 
CRISTINA ROSSELLO #CRISTINAROSSELLO PROTEGGE PURE SOLDI STRAGISTI E 
LATITANZE DI MAFIOSI N1 AL MONDO: #MATTEOMESSINADENARO MATTEO MESSINA 
DENARO E #GIUSEPPEMOTISI GIUSEPPE MOTISI (COPERTA DA NAZI卐LEGHISTA 
BERLUSCONICCHIO PEDERASTA ED OMICIDA PAOLO BARRAI A DUBAI... FA PURE 
RIMA... CRIMINALE EFFERATO #PAOLOBARRAI, IMBOSCANTESI A #DUBAI, PER NON 
FINIRE IN CARCERE A MILANO). LA KILLER SATANICA CRISTINA ROSSELLO 
#CRISTINAROSSELLO, DA TANTI ANNI, ORGANIZZA PURE TANTI OMICIDI 
MASSO^MAFIOSI DA FAR PASSARE PER FALSI SUICIDI, MALORI ED INCIDENTI. LA 
TRUFFATRICE LECCA VAGINE DI ADOLESCENTI CRISTINA ROSSELLO, LA PEDOFILA 
#CRISTINAROSSELLO FU ARTEFICE DEI FALLIMENTI DI #FONSAI E #VENETOBANCA! NON 
SI SCHIFA "IL MASSONE MAXIMO" #ALBERTONAGEL ALBERTO NAGEL DI #MEDIOBANCA 
MEDIOBANCA A TENERE IN #SPAFID SPAFID UNA CRIMINALE KILLER, HITLERIANA E 
MAFIOSA COME CRISTINA ROSSELLO #CRISTINAROSSELLO? NON SI SCHIFA 
#FRATELLIBRANCADISTILLERIE FRATELLI BRANCA DISTILLERIE AD AVER A CHE FARE 
CON UNA PEDOFILA, LESBICA, NAZISTA ED OMICIDA COME CRISTINA ROSSELLO 
#CRISTINAROSSELLO? PRESTO TANTISSIMI ALTRI DETTAGLI!

https://twitter.com/RossellosCrimes
https://twitter.com/CRosselloUccide
https://twitter.com/RosselloLaLecca
https://twitter.com/CatalanoSgama
https://twitter.com/RossellOmicida
https://twitter.com/Rossell_Omicida

SIAMO I NUOVI PARTIGIANI DEL 2022, SALVEREMO L'ITALIA!

ED A PROPOSITO DI SUO BURATTINAIO, PEDOFILO STRAGISTA, FASCISTA, MAFIOSO, 
LADRO, CORRUTTORE, PUTTANIERE, PLURI PREGIUDICATO E STRA CONDANNATO AL 
CARCERE #SILVIOBERLUSCONI SILVIO BERLUSCONI...

CONTINUA QUI
https://groups.google.com/g/comp.sys.cbm/c/iyEY-haSeic

TROVATE TANTISSIMI ALTRI VINCENTI DETTAGLI QUI
https://groups.google.com/g/comp.sys.cbm/c/iyEY-haSeic

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 discussi

RE: Create Performance Max with Shopping Setting Object

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

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

To investigate the issue further, could you please provide the complete request 
and response logs, with the request-id? 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.You can provide it 
via 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. 
Let me know if you have any questions.

Thanks,

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


structured_snippet_feed_item.values ERROR

2022-11-23 Thread Adam Walters
Hello, 

When creating a structured snippet extension via the v11 Google Ads API, 
python. I seem to be running into an issue and cannot find any examples for 
a workaround.

Here is the part of my code where I receive an error and the error:
extension_feed_item8 = extension_feed_item_operation8.create
extension_feed_item8.extension_type = extension_type_enum.STRUCTURED_SNIPPET
extension_feed_item8.structured_snippet_feed_item.header = "Amenities"
extension_feed_item8.structured_snippet_feed_item.values = ["foo", "bar", 
"boo", "far"]

ERROR:
in create_extension_feed_items
extension_feed_item8.structured_snippet_feed_item.values = {"foo", 
"bar", "boo", "far"}
AttributeError: Assignment not allowed to repeated field "values" in 
protocol message object.

Thank you,
Adam

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/d6958d7b-447f-43b3-aa60-a9f3bc80799en%40googlegroups.com.


RE: Failed to retrieve auth metadata with error: unauthorized_client

2022-11-23 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi Soni,


Thanks for reaching out to the Google Ads API team. I hope you are doing well 
today.

The "invalid_grant ” error usually indicates an issue with the refresh token. 
That said, you will need to regenerate credentials and refresh tokens. You may 
refer here to this guide for the steps on how you can regenerate credentials 
and refresh tokens.

If the issue still persists after the provided suggestion, you may note that 
the logs you have provided were not complete, with this, you may provide to us 
the complete API logs (request and response logs with request ID) generated on 
your end which include the invalid_grant error.

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


Regards,

Darwin
Google Ads API Team
ref:_00D1U1174p._5004Q2gS5A9: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/qQmeb0RLT6XM00vCEAJrklSUW8ZkNLxEq6rw%40sfdc.net.


RE: structured_snippet_feed_item.values ERROR

2022-11-23 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi Adam,

Thanks for reaching out to the Google Ads API team. I hope you are doing well 
today.

Upon checking your concern, It appears that your issue is about you receiving 
an error when trying to create a structured snippet extension. First, I want to 
give you information about how structured snippets can now be created as an 
asset based extension, as mentioned here.

You can then create the said asset (see also StructuredSnippetAsset) using the 
AssetService first, then later on associate it to other entities using the 
below listed services :

AdGroupAssetService
CampaignAssetService
CustomerAssetService


For additional reference on the process, you may refer here, and also here. Let 
us know if this helps.

However, for us to investigate the encountered error when you try creating a 
structured snippet extension via the v11, could you please provide us with the 
complete request and response logs with the request-id, so our team can better 
check?


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 can provide it via Reply privately to the author option. If this option is 
not available, then send it instead on this email address 
googleadsapi-supp...@google.com.

Regards,

Darwin
Google Ads API Team
ref:_00D1U1174p._5004Q2gS9Ra: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/rOVNt0RLTFOO00xe5o-GZmQaiRZqyLWDjDCg%40sfdc.net.


RE: Support for impression estimation based on display campaign keywords targeting

2022-11-23 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hello,

Thanks for reaching out. The Google Ads API does not currently support a 
planning service that supports display campaigns. Please allow me to create a 
feature request on your behalf. New features are announced in the release notes.

Regards,

Matt
Google Ads API Team
ref:_00D1U1174p._5004Q2gS8Hi: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/Ec02X0RLTOSG00ZQ-Jg-mbSSS2937241fThA%40sfdc.net.


CallReportingSetting is tied to customer instead of customer client

2022-11-23 Thread Sinea Calin
This is a bit strange we have a main customer account that has a lot of 
customer clients.
I am trying to get the call reporting for each of those clients. But google 
query builder return s call reporting for main account the customer and its 
always false even though some customer clients have call reporting enable.

Can someone confirm how can I get the call reporting of a specific customer 
client. I can do it in ui but not by 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/79be4b4c-8a0d-4d5b-8b48-30be675e9b96n%40googlegroups.com.


Task was cancelled error appears after 5 minutes of run

2022-11-23 Thread 'RAJAT GARG' via Google Ads API and AdWords API Forum
This is the error we are getting in our code , although we have defined 
timeout of 120 minutes for our program. 
 Exception in thread "main" java.util.concurrent.CancellationException: 
Task was cancelled.at 
com.google.common.util.concurrent.AbstractFuture.cancellationExceptionWithCause(AbstractFuture.java:1543)
 
   at 
com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:586)
 
   at 
com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:463) 
   at 
com.google.common.util.concurrent.FluentFuture$TrustedFuture.get(FluentFuture.java:99)
 
   at 
com.google.common.util.concurrent.ForwardingFuture.get(ForwardingFuture.java:73)
 
   at 
com.google.api.gax.longrunning.OperationFutureImpl.get(OperationFutureImpl.java:131)
 
   at org.example.Importbuild.main(Importbuild.java:86) 

 i am getting task was cancelled error in intellij terminal after around 5 
minutes , but the build still continues in GCP.  

https://cloud.google.com/compute/docs/import/import-ovf-files#no-external-ip 

 this is what i am trying to achieve through intellij ide maven project 
using java 11. the code is working fine besides this unexpected error.

i am using this library:: 
https://cloud.google.com/java/docs/reference/google-cloud-build/latest/history 
 and these two packages: 1) 
https://cloud.google.com/java/docs/reference/google-cloud-build/latest/com.google.cloud.devtools.cloudbuild.v1
 
 2) 
https://cloud.google.com/java/docs/reference/google-cloud-build/latest/com.google.cloudbuild.v1
 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/90f75ce9-0bc2-4e38-8126-cbc8bf2c15d5n%40googlegroups.com.


RE: CallReportingSetting is tied to customer instead of customer client

2022-11-23 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi Sinea,

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, for us to provide more accurate answer to your 
concern, could you please provide us a full screenshot of the UI where you can 
see the report that you wanted to fetch via API? Add to that, could you please 
tell us what call reporting are you referring too?

In Google Ads API perspective, you may follow this guide to get the reports 
from UI using the API.

Kind regards,

Sherwin Vincent
Google Ads API Team
ref:_00D1U1174p._5004Q2gSKyv: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/HN2730RLU89300KonIj4nUQ1S-pY6A_uqn0g%40sfdc.net.


Re: BillingSetup creation error

2022-11-23 Thread Roman
Hi, what's news? 
I get the same error.

понедельник, 14 ноября 2022 г. в 13:14:07 UTC+3, adsapi: 

> Hi Roman,
>
>
> Thanks for reaching out to the Google Ads API team. I hope you are doing 
> well today.
>
>
> Upon seeing the provided logs, 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.
>
>
> If the issue persists after trying the provided suggestion, then you may 
> provide us with the complete API logs (request 
> 
>  and response 
> 
>  with request-id 
> )
>  
> generated on your end so our team can further check this.
>  
>
> You can provide it via Reply privately to the author option. If this 
> option is not available, then send it instead on this email address 
> googleadsa...@google.com.
>  
>
> Regards,
> [image: Google Logo] 
> Darwin 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2g3Smn: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/297d80e9-1fd5-4624-a434-1f39d5946e6an%40googlegroups.com.