Empty response when migrate from Adwords to Google Ads Click View

2022-04-11 Thread Daniel
Hello Team,
I'm working in the migration to the new Google Ads API, currently working 
in the migration process from CLICK_PERFORMANCE_REPORT to Click View report.

I'm having an issue with a query that filter by a GCLID. For some reason, 
it always returns an empty list.

GAQL:
click_view_query = <<~QUERY
  SELECT
campaign.id,
campaign.name,
ad_group.name,
ad_group.id,
click_view.area_of_interest.region,
click_view.area_of_interest.city,
segments.slot,
click_view.keyword_info.text,
click_view.keyword_info.match_type
  FROM click_view
  WHERE click_view.gclid = '#{CLICK_ID}'
  AND segments.date = '2022-04-11'
QUERY

Ruby Client:
result = @google_ads_client.service.google_ads.search(
customer_id: @account_id,
return_total_results_count: true,
query: click_view_query
)

I'm using the latest version of ruby client that is recommed in the 
official documentation. I would appreciate any help here. 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/209000ba-9671-43c8-b901-0d3de9e4e268n%40googlegroups.com.


empty response from while uploading GCLID

2022-04-11 Thread Sneha Suhitha Galiveeti
Hi there!

I am using Google Ads API to upload offline conversions using GCLID. I have 
used same code from this link 
.
 
I am not getting any errors but the upload function is returning an empty 
list. Following is my code:

customer_id = "#"
conversion_action_id = "##"
gclid = "###"
conversion_date_time = "-mm-dd hh:mm:ss+00:00"
click_conversion = client.get_type("ClickConversion")
conversion_action_service = client.get_service("ConversionActionService")
click_conversion.conversion_action = 
conversion_action_service.conversion_action_path(
customer_id, conversion_action_id
)
click_conversion.gclid = gclid

click_conversion.conversion_date_time = conversion_date_time

conversion_upload_service = client.get_service("ConversionUploadService")
request = client.get_type("UploadClickConversionsRequest")
request.customer_id = customer_id
request.conversions.append(click_conversion)
request.partial_failure = True 
print(request)
conversion_upload_response = (
conversion_upload_service.upload_click_conversions(
request=request,
)
)

uploaded_click_conversion = conversion_upload_response.results

"uploaded_click_conversion" has the value "[ ]" after the execution of the 
script. Can you please let me know what's going on here.

Thanks in advance!

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/0910c91a-5fe4-47c0-919c-375e6e3ffba0n%40googlegroups.com.


PHP Update Budget

2022-04-11 Thread Mike Behr
I'm trying to update campaign budget

I can update the status & the name.

How can I update the budget:

$campaign = new Campaign([
'resource_name' => ResourceNames::forCampaign($customerId, 
$campaignId),
'status' => CampaignStatus::PAUSED,
'name' => 'Test ' . date( 'Y-m-d h:i' )
]);
// Constructs an operation that will update the campaign with the 
specified resource name,
// using the FieldMasks utility to derive the update mask. This 
mask tells the Google Ads
// API which attributes of the campaign you want to change.
$campaignOperation = new CampaignOperation();
$campaignOperation->setUpdate($campaign);

$campaignOperation->setUpdateMask(FieldMasks::allSetFieldsOf($campaign));

// Issues a mutate request to update the campaign.
$campaignServiceClient = 
$googleAdsClient->getCampaignServiceClient();
$response = $campaignServiceClient->mutateCampaigns(
$customerId,
[$campaignOperation]
);

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/e009f935-5129-4c88-80dd-15326cb75078n%40googlegroups.com.


Get the names of the customer accounts using listAccessibleCustomers

2022-04-11 Thread Muhammad Adil
Hello, 

I am able to get the IDs of the accounts with 
listAccessibleCustomers method but I would also like to get the account 
names along with the IDs. The main aim is to get all accessible accounts 
along with their name. Is it possible to do so through this endpoint? If 
not, which other API endpoint or approach will be best to do this? 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/588a0f3b-18ad-47eb-9ff0-6c39911ccb90n%40googlegroups.com.


Re: Parsing Google Ads Partial Failure

2022-04-11 Thread Alfred Scott
For anyone who encounters this thread, my fix was adding the field 
*'use_proto_plus': 
True,* when initializing our GoogleAdsClient.
GoogleAdsClient.load_from_dict({...,'use_proto_plus': True})

On Monday, April 11, 2022 at 11:34:06 AM UTC-4 Alfred Scott wrote:

> Hello, 
>  I having the exact same error as above, was there any resolution to 
> this? 
> my version info is
> google-ads==15.1.1
> v10 of the api
>
> On Sunday, March 6, 2022 at 10:20:06 PM UTC-5 adsapi wrote:
>
>> Hi,
>>
>> Thanks for reaching out to the Google Ads API Forums.
>>
>> It seems you have a problem in deserialize. Can you check this link 
>> *Warning* 
>> 
>>  and *Partial Failure* 
>> 
>>  for 
>> more information about GoogleAdsFailure.deserialize you encountered.
>>
>> Since the error is more on the implementation on how an object is 
>> deserialize in python, we suggest that you raise this to the client library 
>> owners via this link 
>> . Client library 
>> owners should be able to assist you on this.
>>
>> Let us know if you have any questions.
>>
>> Regards,
>> [image: Google Logo] 
>> Darwin 
>> Google Ads API Team 
>>   
>>
>> ref:_00D1U1174p._5004Q2XlrHY: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/39b87445-4eab-4800-bd50-5bf4ed8a29fcn%40googlegroups.com.


Get paused a campaign manually ??

2022-04-11 Thread Grupo Esneca Formación
Hello, is there any way to obtain the date when someone manually paused a 
campaign? I have seen that there is the ATTRIBUTE campaign.end_date but it 
does not work for me because that date is generated when a campaign is 
automatically completed without someone doing it manually

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/3d3fcad2-8baa-41a0-9548-481756bf5edfn%40googlegroups.com.


Re: About CRITERIA_PERFORMANCE_REPORT migration

2022-04-11 Thread Tülay Çağlayan
I cannot find  Fields "CampaignId, CampaignName, AdGroupId, AdGroupName, 
Id, Criteria, Device, Impressions, Clicks, Cost, AveragePosition, 
Conversion" on report ad_group_criterion 

 .

8 Nisan 2022 Cuma tarihinde saat 13:37:16 UTC+3 itibarıyla adsapi şunları 
yazdı:

> Hi there,
>
> Thanks for reaching out to the Google Ads API Forum.
>
> The report CRITERIA_PERFORMANCE_REPORT is deprecated in the Google Ads 
> API; there is no equivalent report. The *ad_group_criterion* 
> 
>  
> report is the closest to the Criteria Performance Report. 
>
> Google Ads API doesn't have *single attribution reports* 
> 
>  
> so CriteriaTypeName field in a report that has metrics won't be possible. 
> Note that Instead of having single attribution reports which can contain 
> multiple criteria types in a single report, the Google Ads API relies on 
> different reporting views for retrieving stats related to different 
> criteria types. For example, you can make use of the keyword_view to 
> retrieve data by keyword, or the product_group_view to retrieve data by 
> product group. Thus, there is no longer a generic report that contains 
> multiple criteria types; you can only get stats for a criteria type by 
> looking up its view.
>
> Let us know if you have any further questions.
>
> Regards,
> [image: Google Logo] 
> Yasar 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2ZL2zg: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/d3af5572-24ff-4d2f-a625-5d473b96d340n%40googlegroups.com.


Re: Parsing Google Ads Partial Failure

2022-04-11 Thread Alfred Scott
Hello, 
 I having the exact same error as above, was there any resolution to 
this? 
my version info is
google-ads==15.1.1
v10 of the api

On Sunday, March 6, 2022 at 10:20:06 PM UTC-5 adsapi wrote:

> Hi,
>
> Thanks for reaching out to the Google Ads API Forums.
>
> It seems you have a problem in deserialize. Can you check this link 
> *Warning* 
> 
>  and *Partial Failure* 
> 
>  for 
> more information about GoogleAdsFailure.deserialize you encountered.
>
> Since the error is more on the implementation on how an object is 
> deserialize in python, we suggest that you raise this to the client library 
> owners via this link 
> . Client library 
> owners should be able to assist you on this.
>
> Let us know if you have any questions.
>
> Regards,
> [image: Google Logo] 
> Darwin 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2XlrHY: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/f712b7ab-99f5-4b0a-a532-1bd3c2fd6bden%40googlegroups.com.


RE: Where to set Bid strategy in Keyword Plan > Forecast

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

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

With regard to your concern, I can see from the shared screenshot that you 
provided that the forecast feature of the UI can select bidding strategy. 
Unfortunately, the maximize click bidding strategy does not seem to be 
supported in the Google Ads API, manual CPC only. However, my team has already 
raised a feature request, subject for review, regarding the maximize clicks 
option. For now, you may keep an eye on our blog for updates or announcements.

Best regards,

Jinky
Google Ads API Team
ref:_00D1U1174p._5004Q2ZLToz: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/9PXwi0RA6I8Q00xiW8JYZbSoyOEXg2G_dd4w%40sfdc.net.


Re: Replicating Keyword Plan > Forecast through API

2022-04-11 Thread Emynence Technologies
Hi,
Can someone help me with my issue?

Thanks in advance

On Saturday, 9 April 2022 at 21:29:08 UTC+5:30 Emynence Technologies wrote:

> Hi,
> In the frontend Keyword Plan > Forecast, I do not specify the budget when 
> i share a list of keywords. The system then throws a forecast output as 
> below
>
> [image: Screenshot 2022-04-09 212607.png]
>
> When i use API, I need to specify the CPCMicros value in 
> CreateKeywordPlanCampaign.
> And i am not able to get the output from API, same as that from the 
> Frontend (above).
>
> How do i ensure that the frontend and API values are same?
>
> Thanks in advance
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/032f195b-0cb1-42d3-a6d6-4dcc77b4f68fn%40googlegroups.com.


Re: Trouble getting partial failures

2022-04-11 Thread Walter Bodwell
Thanks for your response.  I am checking the code after getting the 
partial_failure_error.   The problem is that the partial_failure_error is 
None (i.e., not present).

Thanks,
Walter

On Thursday, April 7, 2022 at 9:15:34 PM UTC-5 adsapi wrote:

> Hi Walter,
>
> Thank you for raising this concern to the Google Ads API team.
>
> Moving forward to your concern, as per this document 
> ,
>  
> in Python the partial_failure_error attr is always present on a response 
> message and is represented by a google.rpc.Status message. So we can't 
> simply check whether the field is present, we must check that the code is 
> *non-zero*.
>
> Let us know if this is what you're looking for.
>
> Regards,
> [image: Google Logo] 
> Carmela 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2ZKslq: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/694a8f16-a0d8-4fa9-9769-9b637815f616n%40googlegroups.com.


Re: How to define UserList using a Manager account remarketing tags

2022-04-11 Thread Ben Usher
Hi,

I'm also interested in using the MCC tag as a source for my sub-account 
audience segment via the Google Ads API. I can't see any way of doing this 
through the v10 API. Has this feature been released yet? If not, is there a 
plan to do so?

Thanks

On Monday, 29 January 2018 at 18:20:48 UTC Dhanya Sundararaju (AdWords API 
Team) wrote:

> Hi Oz,
>
> I'm afraid, setting a user list's tag source and sharing remarketing lists 
> associated with the client account with its MCC account using the API is 
> not supported. Please keep an eye on our blog 
>  for any 
> updates or announcements related to this feature. 
>
> Regards,
> Dhanya, AdWords API Team
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/4198727b-6130-4231-83c5-6dbf60bac73dn%40googlegroups.com.


Request to add "Rakuten Mobile Japan" targeting option in the Mobile carrier

2022-04-11 Thread mchocobo
https://developers.google.com/adwords/api/docs/appendix/codes-formats#expandable-9

the Mobile Carrier does not have the Rakuten Mobile. Would you please add 
the Criterion ID for the Rakuten Mobile?

The Rakuten Mobile technical details can be found here: 
https://xn--zck8ci2732becr.jp/mno/mcc-mnc/

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/32533866-5f06-4a95-994e-30ac3bf964fan%40googlegroups.com.


Re: User list update via Rest api remain empty with high match rate!

2022-04-11 Thread Diana Clementi
Hello, 
any update on this? 
Looking forward to hearing from you,
Thanks

Il giorno venerdì 1 aprile 2022 alle 16:11:41 UTC+2 adsapi ha scritto:

> Hi Diana,
>
> Thanks for providing the requested materials. Please allow me to share 
> this with our team and we will provide an update shortly.
>
> Regards,
> Matt
> Google Ads API Team
>
> [image: Google Logo] 
> Matt 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2ZI8Dw: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/65da726b-ed37-438b-a0c0-b5152393895dn%40googlegroups.com.


Re: Performance max campaign not returned in campaign_budget report

2022-04-11 Thread 'Aayushi Bhandari' via Google Ads API and AdWords API Forum
Hi team,

Do we have any updates on this?

Cheers,
Aayushi
On Wednesday, March 30, 2022 at 6:27:42 PM UTC+5:30 Shipra wrote:

> Hey  Nirmita,
> I shared logs privately with the author.
>
> Regards,
> Shipra
>
> On Wednesday, March 30, 2022 at 12:33:33 AM UTC+5:30 adsapi wrote:
>
>> Hi Oliver,
>>
>> Thank you for reaching out to the Google Ads API support team.
>>
>> Could you please share 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 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.
>>
>> Thanks,
>> [image: Google Logo] 
>> Nirmita 
>> Google Ads API Team 
>>   
>>
>> ref:_00D1U1174p._5004Q2YsQ0q: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/bcc1885c-4ff0-4a5a-8804-1da655f40bc6n%40googlegroups.com.


Getting image/video assets for discovery campaigns

2022-04-11 Thread Ashwani Chandra
Hi, 

While working with discovery and performance campaigns, we are able to get 
the campaign metrics from the endpoints, but we would also like to visually 
display the assets (image and video) along with the campaign details for 
better reporting. 

We see that performance campaigns have assets attached to it, but we 
currently are unable to get any information on the attached assets for 
discovery campaigns. 

Can you please let us know if there is a way to get the assets for a given 
discovery campaign (headline, text, image(s), video(s))

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/53d87fd5-f06a-4b89-9ee1-d1fac4898eb6n%40googlegroups.com.


I want to get country infomation with campaign in table 'location_view', my query as followed

2022-04-11 Thread MY LOVE
SELECT 
customer.id,
campaign.id,
campaign.name,
campaign.status,
metrics.interactions,
metrics.cost_micros,
metrics.conversions,
metrics.ctr,
metrics.impressions,
metrics.clicks,
segments.date,
FROM location_view
WHERE
segments.date BETWEEN '%s' AND '%s'


please, 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/33745cd5-ba4a-4c6f-9b18-32a836d2f45an%40googlegroups.com.


Re: PERMISSION_DENIED with google ads api

2022-04-11 Thread Cauz Jérôme
I think the problem comes directly from google, because I created a new 
"OAuth 2.0 credential clients" and I have the exact same problem while I 
validated the management for adwords and ads. I know how to make requests 
to the adwords api but not to google ads or I have the same answer.

Le lundi 11 avril 2022 à 11:14:18 UTC+2, Cauz Jérôme a écrit :

> The email given is obviously not complete. Here are the logs:
>
> CampaignController_campaignFindAction: -2951715149- {
>
>  "message": "The caller does not have permission",
>  "code": 7,
>  "status": "PERMISSION_DENIED",
>  "details": [
>  {
>  "@type": 
> "google.ads.googleads.v9.errors.googleadsfailure-bin",
>  "data": ""
>  },
>  {
>  "@type": "grpc-status-details-bin",
>  "data": ""
>  },
>  {
>  "@type": "request-id",
>  "data": "-fgJosAzjUQSb43BsJQJIw"
>  }
>  ]
> } #0 
> /data/vendor/googleads/google-ads-php/src/Google/Ads/GoogleAds/Lib/V9/GoogleAdsExceptionTrait.php(50):
>  
> class@anonymous->createGoogleAdsException()
> #1 
> /data/vendor/googleads/google-ads-php/src/Google/Ads/GoogleAds/Lib/V9/ServerStreamingGoogleAdsExceptionMiddleware.php(96):
>  
> class@anonymous->throwGoogleAdsException()
> #2 
> /data/vendor/googleads/google-ads-php/src/Google/Ads/GoogleAds/Lib/V9/ServerStreamingGoogleAdsResponseMetadataCallable.php(63):
>  
> class@anonymous->readAll()
> #3 
> /data/vendor/googleads/google-ads-php/src/Google/Ads/GoogleAds/Lib/V9/GoogleAdsServerStreamDecorator.php(73):
>  
> class@anonymous->readAll()
> #4 /vagrant/app/Controllers/CampaignController.php(154): 
> Google\Ads\GoogleAds\Lib\V9\GoogleAdsServerStreamDecorator->iterateAllElements()
> #5 [internal function]: 
> App\Controllers\CampaignController->campaignFindAction()
> #6 /vagrant/app/micro-bootstrap.php(51): Phalcon\Mvc\Micro->handle()
> #7 /vagrant/public/index.php(8): require_once('/vagrant/app/mi...')
> #8 {main}
>
> Le lundi 11 avril 2022 à 11:10:36 UTC+2, Cauz Jérôme a écrit :
>
>> Hi,
>>
>> Thank you for your reply.
>> Here is what I get:
>> {
>> "message": "The caller does not have permission",
>> "code": 7,
>> "status": "PERMISSION_DENIED",
>> "details": [
>> {
>> "@type": 
>> "google.ads.googleads.v9.errors.googleadsfailure-bin",
>> "data": ""
>> },
>> {
>> "@type": "grpc-status-details-bin",
>> "data": ""
>> },
>> {
>> "@type": "request-id",
>> "data": "-fgJosAzjUQSb43BsJQJIw"
>> }
>> ]
>> }
>>
>> The logs give exactly the same information. I still sent you on the email 
>> give what I received.
>>
>> Thank you for help,
>>
>> Le vendredi 8 avril 2022 à 16:54:25 UTC+2, adsapi a écrit :
>>
>>> Hi Cauz, 
>>>
>>> Thank you for reaching out to us.
>>>
>>> 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, then send it instead on this email address 
>>> googleadsa...@google.com .
>>>
>>> Thanks,
>>> [image: Google Logo] 
>>> Nirmita 
>>> Google Ads API Team 
>>>   
>>>
>>> ref:_00D1U1174p._5004Q2ZL4lT: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/17cfc672-40bd-4400-9226-7621d7038567n%40googlegroups.com.


Re: what are the views that support "metrics.biddable_app_install_conversions", "metrics.biddable_app_post_install_conversions"

2022-04-11 Thread Vinay Kumar
Thank you for the response, 
Can you please tell me which resources that supports "
*metrics.biddable_app_install_conversions*", "
*metrics.biddable_app_post_install_conversions*"
Thank you,
VinayV9.
On Monday, 11 April 2022 at 14:07:59 UTC+5:30 adsapi wrote:

> Hi Vinay,
>
> Thank you for reaching out to us.
>
> Upon checking, '*metrics.biddable_app_install_conversions*' and ‘
> *metrics.biddable_app_post_install_conversions*’ are not a valid field in 
> the SELECT clause when customer 
>  is the 
> resource in the FROM clause. Fields in the SELECT must be 'Selectable'.
>
> To see the metrics and segments that can be put in the same SELECT clause 
> as the fields of customer, you can refer to this documentation 
> 
>  
> by clicking “Yes, it is” in the dropdown box.
>
> I would also recommend that you use the Google Ads Query Builder 
> 
>  
> and Query Validator 
> 
>  
> tools for constructing queries.
>
> And for the question "*In API docs it was mentioned that "is customer 
> specified in the FROM clause of the query" as shown in the attachment?. We 
> haven't understood the difference of the dropdown as we always have 
> "customer" in the query*."
>
> - The dropdown box specifies in what part of the query you use the 
> resource (customer). For example, you want to get the selectable fields in 
> the customer, so you will click "Yes, it is" and the compatible fields will 
> be displayed.
>
> Best regards,
> [image: Google Logo] 
> Heidi 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2ZLl16: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/75b6ce6f-b1a5-44b9-816f-915e3c6f88ccn%40googlegroups.com.


RE: Get Operation Count For Last Call in Google Ads Api

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

Thank you for reaching out to us.

Please note that there’s already no get operations, you can check these Release 
notes to check the functionality and changes added in v10.0.

You can check this documentation for unified object retrieval and reporting 
service of the Google Ads API using GoogleAdsService . I would also suggest you 
check this API Limits and Quotas guide for yourself to become familiar with the 
related limits.

Best regards,

Heidi
Google Ads API Team
ref:_00D1U1174p._5004Q2ZLlZF: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/I4BSX0RA65B900JNwGkK7KQR20r6beyHpRKQ%40sfdc.net.


Re: PERMISSION_DENIED with google ads api

2022-04-11 Thread Cauz Jérôme
The email given is obviously not complete. Here are the logs:

CampaignController_campaignFindAction: -2951715149- {
 "message": "The caller does not have permission",
 "code": 7,
 "status": "PERMISSION_DENIED",
 "details": [
 {
 "@type": "google.ads.googleads.v9.errors.googleadsfailure-bin",
 "data": ""
 },
 {
 "@type": "grpc-status-details-bin",
 "data": ""
 },
 {
 "@type": "request-id",
 "data": "-fgJosAzjUQSb43BsJQJIw"
 }
 ]
} #0 
/data/vendor/googleads/google-ads-php/src/Google/Ads/GoogleAds/Lib/V9/GoogleAdsExceptionTrait.php(50):
 
class@anonymous->createGoogleAdsException()
#1 
/data/vendor/googleads/google-ads-php/src/Google/Ads/GoogleAds/Lib/V9/ServerStreamingGoogleAdsExceptionMiddleware.php(96):
 
class@anonymous->throwGoogleAdsException()
#2 
/data/vendor/googleads/google-ads-php/src/Google/Ads/GoogleAds/Lib/V9/ServerStreamingGoogleAdsResponseMetadataCallable.php(63):
 
class@anonymous->readAll()
#3 
/data/vendor/googleads/google-ads-php/src/Google/Ads/GoogleAds/Lib/V9/GoogleAdsServerStreamDecorator.php(73):
 
class@anonymous->readAll()
#4 /vagrant/app/Controllers/CampaignController.php(154): 
Google\Ads\GoogleAds\Lib\V9\GoogleAdsServerStreamDecorator->iterateAllElements()
#5 [internal function]: 
App\Controllers\CampaignController->campaignFindAction()
#6 /vagrant/app/micro-bootstrap.php(51): Phalcon\Mvc\Micro->handle()
#7 /vagrant/public/index.php(8): require_once('/vagrant/app/mi...')
#8 {main}

Le lundi 11 avril 2022 à 11:10:36 UTC+2, Cauz Jérôme a écrit :

> Hi,
>
> Thank you for your reply.
> Here is what I get:
> {
> "message": "The caller does not have permission",
> "code": 7,
> "status": "PERMISSION_DENIED",
> "details": [
> {
> "@type": "google.ads.googleads.v9.errors.googleadsfailure-bin",
> "data": ""
> },
> {
> "@type": "grpc-status-details-bin",
> "data": ""
> },
> {
> "@type": "request-id",
> "data": "-fgJosAzjUQSb43BsJQJIw"
> }
> ]
> }
>
> The logs give exactly the same information. I still sent you on the email 
> give what I received.
>
> Thank you for help,
>
> Le vendredi 8 avril 2022 à 16:54:25 UTC+2, adsapi a écrit :
>
>> Hi Cauz, 
>>
>> Thank you for reaching out to us.
>>
>> 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, then send it instead on this email address 
>> googleadsa...@google.com .
>>
>> Thanks,
>> [image: Google Logo] 
>> Nirmita 
>> Google Ads API Team 
>>   
>>
>> ref:_00D1U1174p._5004Q2ZL4lT: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/3864c2ed-a7cd-4684-aded-bdc57f687da7n%40googlegroups.com.


Re: PERMISSION_DENIED with google ads api

2022-04-11 Thread Cauz Jérôme
Hi,

Thank you for your reply.
Here is what I get:
{
"message": "The caller does not have permission",
"code": 7,
"status": "PERMISSION_DENIED",
"details": [
{
"@type": "google.ads.googleads.v9.errors.googleadsfailure-bin",
"data": ""
},
{
"@type": "grpc-status-details-bin",
"data": ""
},
{
"@type": "request-id",
"data": "-fgJosAzjUQSb43BsJQJIw"
}
]
}

The logs give exactly the same information. I still sent you on the email 
give what I received.

Thank you for help,

Le vendredi 8 avril 2022 à 16:54:25 UTC+2, adsapi a écrit :

> Hi Cauz, 
>
> Thank you for reaching out to us.
>
> 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, then send it instead on this email address 
> googleadsa...@google.com .
>
> Thanks,
> [image: Google Logo] 
> Nirmita 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2ZL4lT: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/803c8ab2-4d6d-4095-9d39-3c2eeca35894n%40googlegroups.com.


Re: Problems with batch jobs

2022-04-11 Thread Ainis Vabolis
But it is not the feature, it is the issue with batch processing :/

On Monday, April 11, 2022 at 11:51:10 AM UTC+3 adsapi wrote:

> Hi Ainis.
>  
>
> Thank you for following up.
>
>
> With regards to your concern, I am afraid that we don't have the 
> visibility to the timeline and plan about the feature request that we 
> raised.
>  
>
> For now please follow our blog  as 
> we will post relevant updates when it becomes supported.
>  
>
> Regards,
> [image: Google Logo] 
> Darwin 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2ZL2Re: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/752f9fea-d043-4c2c-aa75-4fc243574ef7n%40googlegroups.com.


Re: Problems with batch jobs

2022-04-11 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi Ainis.

Thank you for following up.


With regards to your concern, I am afraid that we don't have the visibility to 
the timeline and plan about the feature request that we raised.

For now please follow our blog as we will post relevant updates when it becomes 
supported.

Regards,

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


RE: hanks to the Google team. I have a question: can display upload upload the URL of the picture? Not a bundleurl?

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

Thanks for reaching out to the Google Ads API Support team.


Could you please provide more context and elaborate on what you meant by : "can 
display upload upload the URL of the picture? Not a bundleurl?"? Please reply 
privately if sending to us any sensitive details.


Regards,

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


Audience performance report [adwords] / Audience segment [ui]

2022-04-11 Thread Don A
Hello,

1.

In migration map

https://developers.google.com/google-ads/api/docs/migration/mapping?hl=en#audience_performance

for 
CpcBid says 

"This should be campaign/ad group criterion depending on the view."

When querying from ad_group_audience_view
this field should be ad_group_criterion.effective_cpc_bid_micros ?

However when querying from campaign_audience_view what field should it be?


2.

In google ads ui, using audience segment predefined report, what are the 
api corresponding columns to

"Audience segment max CPC"

"Ad group default max. CPC"

"Targeting Setting"


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/647fb598-aeae-4339-9b72-f4f67a979e07n%40googlegroups.com.


RE: what are the views that support "metrics.biddable_app_install_conversions", "metrics.biddable_app_post_install_conversions"

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

Thank you for reaching out to us.

Upon checking, 'metrics.biddable_app_install_conversions' and 
‘metrics.biddable_app_post_install_conversions’ are not a valid field in the 
SELECT clause when customer is the resource in the FROM clause. Fields in the 
SELECT must be 'Selectable'.

To see the metrics and segments that can be put in the same SELECT clause as 
the fields of customer, you can refer to this documentation by clicking “Yes, 
it is” in the dropdown box.

I would also recommend that you use the Google Ads Query Builder and Query 
Validator tools for constructing queries.

And for the question "In API docs it was mentioned that "is customer specified 
in the FROM clause of the query" as shown in the attachment?. We haven't 
understood the difference of the dropdown as we always have "customer" in the 
query."

- The dropdown box specifies in what part of the query you use the resource 
(customer). For example, you want to get the selectable fields in the customer, 
so you will click "Yes, it is" and the compatible fields will be displayed.

Best regards,

Heidi
Google Ads API Team
ref:_00D1U1174p._5004Q2ZLl16: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/ylrZl0RA62MS00XKORm4paRPW5-oE1IubQ6A%40sfdc.net.


Get Operation Count For Last Call in Google Ads Api

2022-04-11 Thread Empower Solutions
Hi,

In Google AdWords API we have a method "GetOperationCountForLastCall",
how can I get it in a google Ads API? 

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/7dd97bb2-ded7-47f5-b5c9-d58d1cb76492n%40googlegroups.com.


Re: Ad preview

2022-04-11 Thread Logrise lda
Thanks for the response,

I will keep an eye on the blog, 

Have a great day

Kind regards

A sexta-feira, 8 de abril de 2022 à(s) 19:36:25 UTC+1, adsapi escreveu:

> Hi there,
>
> Thank you for the screenshot, I reproduced it and sent in your request for 
> ad preview of responsive search ads to my team. This request is subject to 
> review. You may monitor our blog 
>  for 
> an update.
>
>
> Regards,
>
>
> [image: Google Logo] 
> Aryeh 
> Google Ads API Team 
>   
>  
>
> ref:_00D1U1174p._5004Q2ZL4TD: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/101dcf0e-9963-4895-9c42-bfdb0425daafn%40googlegroups.com.


Searching custom interests using the google ads API

2022-04-11 Thread Shehan Jayasinghe
Hi all,
We're trying to create a custom audience via the API. How do we search the 
interests and custom affinity & intent categories as shown in the 
screenshot?
Is there a search API or a GAQL query that we can use to query the relevant 
interests?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/72b9dcc7-6ae7-437d-acd5-7f8093d1c8d0n%40googlegroups.com.


Re: search impression share returns 0 when requested with segment network

2022-04-11 Thread Tiana S.
Hi Nadine,

Thanks for the update! Please let me know what they say.

On Friday, 8 April 2022 at 20:45:27 UTC+2 adsapi wrote:

> Hello Tiana,
>
> Unfortunately, we don't have an answer on this one, yet. I think it may 
> have accidentally dropped between two people. I'm reaching out to them to 
> find out what's going on there.
>
> Cheers,
> Nadine, Google Ads API Team
>
> ref:_00D1U1174p._5004Q2Schbk: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/d3b9ae18-ba31-41f9-b9ad-c29c789f8325n%40googlegroups.com.


Re: Getting 400 Error on generateKeywordIdeas

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

Thank you for reaching out.

As per this document, they typically contact you within two business days of 
the date you submitted your application, at the email address you provided. 
Also, if you want to do a follow up or any concern about your submitted 
application, the I would suggest reaching out to the Compliance Team via this 
link as they are the ones who process and approve requests.

Let us know if you have further questions.

Regards,

Carmela
Google Ads API Team
ref:_00D1U1174p._5004Q2ZLdzS: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/SPvIV0RA61C600T2uZuXaLRcqmhp7o8JHWPw%40sfdc.net.


Login-customer-id

2022-04-11 Thread 'Matan Shavit' via Google Ads API and AdWords API Forum
Hey, I need to add login-customer-id header to the request I send,
when trying to get the relevant manager id I send List accessible customers 
request, 
and query the returning customers to get the account hierarchy, none of the 
accessible customers aren enabled so I get permission denied, since it 
didnt require login-customer-id in the previous api it didnt fail. What are 
my options?

request_id: \"AKJx3VdC9FDKJ5Ibr41KGA

Failure message: errors {\n  error_code {\nauthorization_error: 
CUSTOMER_NOT_ENABLED\n  }\n  message: \"The customer can\\'t be used 
because it isn\\'t enabled.\"\n}\\"\n\nStatus: 
Status{code=PERMISSION_DENIED, description=The caller does not have 
permission, cause=null}.

Body: customer_id: \"2494702650\"\nquery: \"SELECT customer_client.manager, 
customer_client.descriptive_name, customer_client.id FROM customer_client 
WHERE customer_client.level <= 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/178fa179-97f3-4153-a1bb-68efd7dd3f66n%40googlegroups.com.


Re: AuthorizationError.TWO_STEP_VERIFICATION_NOT_ENROLLED error returned by AdWords API

2022-04-11 Thread 'Oksana Sulyma' via Google Ads API and AdWords API Forum
Hi! any information on my question will be highly appreciated! 

On Wednesday, March 30, 2022 at 6:20:16 PM UTC+3 Oksana Sulyma wrote:

> Hello, just wanted to confirm that we still need an answer to this 
> question. Thanks!
>
> On Wednesday, March 23, 2022 at 11:50:46 AM UTC+2 Oksana Sulyma wrote:
>
>> Hello Google Ads API team,
>> We have an issue our customer is very upset about. 
>> For one of the multiple accounts we serve we 
>> get AuthorizationError.TWO_STEP_VERIFICATION_NOT_ENROLLED error while 
>> querying
>>
>> https://developers.google.com/adwords/api/docs/reference/v201809/CampaignService
>> .
>> Our customer sent a screenshot confirming that 2 step verification is. 
>> configured for this account. What is interesting, when I query Ads API 
>> https://developers.google.com/google-ads/api/fields/v10/campaign 
>> service, I get successful response for the same account.
>> What could be a problem ?I'll be happy to share details in private 
>> message.
>> Thank you in advance!
>> Oksana
>>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/d60cb4de-5b4f-404c-bcb6-7885d081ae82n%40googlegroups.com.


what are the views that support "metrics.biddable_app_install_conversions", "metrics.biddable_app_post_install_conversions"

2022-04-11 Thread Vinay Kumar
In the API, it was given that *Customer View* will support the following 
metrics: 

biddable_app_install_conversions 

biddable_app_post_install_conversions 


But when we hit these metrics, we are seeing the following error:

*Request:*
{
"query": "SELECT  metrics.biddable_app_install_conversions, 
metrics.biddable_app_post_install_conversions FROM customer WHERE 
segments.date >= '2021-10-09' AND segments.date <= '2022-04-06' PARAMETERS 
omit_unselected_resource_names = true"
}

*Error Response:*
[
{
"error": {
"code": 400,
"message": "Request contains an invalid argument.",
"status": "INVALID_ARGUMENT",
"details": [
{
"@type": 
"type.googleapis.com/google.ads.googleads.v10.errors.GoogleAdsFailure",
"errors": [
{
"errorCode": {
"queryError": "PROHIBITED_METRIC_IN_SELECT_OR_WHERE_CLAUSE"
},
"message": "Cannot select or filter on the following metrics: 
'biddable_app_install_conversions'(could not support requested resources: 
'CUSTOMER'), 'biddable_app_post_install_conversions'(could not support 
requested resources: 'CUSTOMER'), since metric is incompatible with the 
resource in the FROM clause or other selected segmenting resources."
}
],
"requestId": "yfHQAeXJhc8Ido0yK0CwSw"
}
]
}
}
]

In API docs it was mentioned that "is customer specified in the FROM clause 
of the query" as shown in the attachment?. We haven't understood the 
difference of the dropdown as we always have "customer" in the query. Can 
you please let us know what is the query to retrieve these metrics? 


Thank you.
VinayV9

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/2d155f51-cd16-4748-baed-336b7dd9de18n%40googlegroups.com.


RE: Getting StackOverFlow error while creative AdsServiceClient

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

Thanks for reaching out to the Google Ads API Support team.


So our team can better check on this, can you provide the complete API logs 
(request and response with request-id) to further investigation?

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,

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


Re: Getting 400 Error on generateKeywordIdeas

2022-04-11 Thread David Alvarez
Any idea on how long the acceptance process usually takes? I can't seem to 
get my developer token to work with my Test Manager Account.

On Monday, April 11, 2022 at 2:42:11 AM UTC-4 adsapi wrote:

> Hi David,
>
> Thank you for the update.
>
> We are glad to hear that. If you have further questions, please feel free 
> to add those in this thread. Our team will be happy to assist and give 
> support to you.
>
>
> Regards,
> [image: Google Logo] 
> Carmela 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2ZLdzS: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/796db45d-1974-4139-aeac-0767c00059bcn%40googlegroups.com.


Re: Getting 400 Error on generateKeywordIdeas

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

Thank you for the update.

We are glad to hear that. If you have further questions, please feel free to 
add those in this thread. Our team will be happy to assist and give support to 
you.

Regards,

Carmela
Google Ads API Team
ref:_00D1U1174p._5004Q2ZLdzS: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/tFiqi0RA5X9Y009BmTsWOTR0uToub-CMaLlA%40sfdc.net.


Re: CANNOT_MODIFY_AD

2022-04-11 Thread FW API


Hello Aryeh,

thank you for the overview of ad types. That was very helpful. I have tried 
what happens when one „edits“ for example the final url of an immutable 
image ad in the google ads web app, and then apparently  a modified ad is 
created and the old ad is removed. Fair enough.

Now I wonder, how to do the same thing via the api. The problem is that 
ad.image_ad.media_file 

 is 
not selectable from ad_group. So I cannot retrieve the image file resource 
name to create a new ad with it.

How can this be done?

Yours,

Stefan

On Friday, April 8, 2022 at 4:27:21 PM UTC+2 adsapi wrote:

> Hi there,
>
> According to our documentation an image ad is immutable 
> .
>  
> You can create a new one based on the old one instead.
>
> If the above also causes errors, could you turn on logging with log level 
> set to 'DEBUG' and send us privately the request and response log of API 
> communication created with this error?
>
> The request and response appears similar to the JSON Mappings in our REST 
> documentation 
> 
>  
> with additional information such as  request ID 
> .
>  
> Our client libraries have loggers with logging instructions, to see these 
> instructions you can click on the client library you use in the sidebar of 
> our client library guide 
>  and 
> click on "Logging”
>
> Regards,
>
> [image: Google Logo] 
> Aryeh 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2ZL6pz: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/ad35a6e2-0f42-48fc-83b1-78da91a21824n%40googlegroups.com.


Re: Getting 400 Error on generateKeywordIdeas

2022-04-11 Thread David Alvarez
Hi! Thank you very much.

Finally, the error was simply that I was sending a DEVELOPER TOKEN that was 
pending approval on a (Non-Test) Manager account. I applied for my 
production token so that I can query without problems.

On Sunday, April 10, 2022 at 11:52:32 PM UTC-4 adsapi wrote:

> Hi David,
>
> Thank you for raising this concern to the Google Ads API team.
>
> With regard to your concern, I can see that this is about 
> *generateKeywordIdeas. *That said, I would suggest referring to this 
> document 
> 
>  which 
> contains the details about this. Also, please check this general 
> guideline for the Rest API 
>  for 
> more information.
>
> Let us know if you have further questions.
>
> Regards,
> [image: Google Logo] 
> Carmela 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2ZLdzS: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/9061c462-3599-4d5e-8627-3e8bd8bfc073n%40googlegroups.com.


Re: Problems with batch jobs

2022-04-11 Thread Ainis Vabolis
Hi,

Any news ? 

On Friday, April 8, 2022 at 5:48:41 PM UTC+3 adsapi wrote:

> Hi Ainis,
>
> Thank you for following up.
>
> My colleague has already raised the issue to the team with the information 
> that you provided. With this, please keep an eye on the other email thread 
> as we will provide updates about the issue there when it becomes available.
>
> Regards,
> [image: Google Logo] 
> Ernie John 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2ZL2Re: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/2a87aeb1-9b86-4cb6-bdef-ad50c5930a84n%40googlegroups.com.


User making changes on account

2022-04-11 Thread Dan
HI,

Is the only way to find out the user that has made a change on an account 
via the *change_event*?

For instance if we pull a resource, is there no other way to see the user 
and/or ID who added certain keywords etc. for instance? Like is there a 
user ID we can get or filter on?

We are seeing some discrepancies using the *change_event*, which is to be 
expected according to the docs. Just wondering if there is a better, more 
accurate way to find out what users are doing what on an account, maybe 
with a combination of of change_event and change_status or similar?

Thanks

Dan.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/5dd7a361-2df4-4e20-b8ad-1b7fbd8306e0n%40googlegroups.com.


RE: Deadline Exceeded when fetching ads since 4/6

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

Thank you for reaching out to us.

The DEADLINE_EXCEEDED error occurs when the request took longer than a deadline.

But since you said that “The query can successfully return ~400k Responsive 
Search Ads within 40 minutes. But now it hit the "Deadline Exceeded" every 15 
minutes” even though the default value is 1 hour, then this could indicate an 
issue with the client library. I would recommend that you reach out to the 
client library owners via this link , to check the issue on the client library 
that causing the RPC_DEADLINE_TOO_SHORT.

Best regards,

Heidi
Google Ads API Team
ref:_00D1U1174p._5004Q2ZLKsd: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/zrs3N0RA5VSK00UR9x3jWlTtmMtrwZGgFCTw%40sfdc.net.