Re: Automatically output lead form information from Google Ads to a spreadsheet.

2023-04-27 Thread Hiro
 

【Additional Note】

When testing with "*lead_form_submission_data.lead_form_submission_fields*
," 

*only the following name* was outputted:


{fieldValue= 'Full Name of the Form Filler (the name entered by the 
submitter in the form)', fieldType=*FULL_NAME*}


It is unclear why the following information, which was also entered in the 
lead form, is not included in 
"lead_form_submission_data.lead_form_submission_fields":

*⑥Company name*

*⑦Work email address*

*⑧Work phone number*

*⑨Response to "Please let us know the details of your service request." (a 
question set up separately)*

2023年4月28日金曜日 12:20:21 UTC+9 Hiro:

I would like to automatically export lead information from a Google Ads 
lead form to a Google Spreadsheet.

Source: One lead form on a Google Ads page (Ads & Assets > Assets > Lead 
Form)
Destination: Specified Spreadsheet


*Question*I don't know the "column names" needed to output data from ⑤ to ⑨ 
from the following data.

①Submission Time (JST)
②Gclid
③Campaign Name
④Ad Group Name




*⑤Full Name⑥Company Name⑦Work Email Address⑧Work Phone Number⑨Answer to 
"Please let us know what you're interested in." (a question set up 
individually)*


*What I tried*I created a Google Ads script , but I could only find and 
output the column names for ①-④ using "Reference Site ." However, I could 
not find the column names for ⑤-⑨.

Here is the code I have written in the Google Ads script. Please refer to 
the SELECT part!
[File name: code.gs]

function main(){

  const ID1 = 'Spreadsheet ID';
  
  // Destination Spreadsheet name
  const SHEET_NAME_ADGROUP1 = 'Sheet Name';
  
  const spreadsheet = SpreadsheetApp.openById(ID1);
  const sheet1 = spreadsheet.getSheetByName(SHEET_NAME_ADGROUP1);
  const query1 = `
SELECT 





*lead_form_submission_data.gclid,//②Gclidad_group.name 
,//④Ad Group Namecampaign.name 
,   //③Campaign 
Namelead_form_submission_data.submission_date_time //①Submission Time 
(JST)FROM lead_form_submission_data`;*const report1 = AdsApp.report(query1);
report1.exportToSheet(sheet1);  }


*Reference Sites:*
https://developers.google.com/google-ads/api/fields/v13/lead_form_submission_data_query_builder

I would appreciate your help in identifying the missing column names. 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/0aae71ae-9142-4ce6-9334-fd39832e610en%40googlegroups.com.


Automatically output lead form information from Google Ads to a spreadsheet.

2023-04-27 Thread Hiro
I would like to automatically export lead information from a Google Ads 
lead form to a Google Spreadsheet.

Source: One lead form on a Google Ads page (Ads & Assets > Assets > Lead 
Form)
Destination: Specified Spreadsheet


*Question*I don't know the "column names" needed to output data from ⑤ to ⑨ 
from the following data.

①Submission Time (JST)
②Gclid
③Campaign Name
④Ad Group Name




*⑤Full Name⑥Company Name⑦Work Email Address⑧Work Phone Number⑨Answer to 
"Please let us know what you're interested in." (a question set up 
individually)*


*What I tried*I created a Google Ads script , but I could only find and 
output the column names for ①-④ using "Reference Site ." However, I could 
not find the column names for ⑤-⑨.

Here is the code I have written in the Google Ads script. Please refer to 
the SELECT part!
[File name: code.gs]

function main(){

  const ID1 = 'Spreadsheet ID';
  
  // Destination Spreadsheet name
  const SHEET_NAME_ADGROUP1 = 'Sheet Name';
  
  const spreadsheet = SpreadsheetApp.openById(ID1);
  const sheet1 = spreadsheet.getSheetByName(SHEET_NAME_ADGROUP1);
  const query1 = `
SELECT 





*lead_form_submission_data.gclid,//②Gclidad_group.name,//④Ad Group 
Namecampaign.name,   //③Campaign 
Namelead_form_submission_data.submission_date_time //①Submission Time 
(JST)FROM lead_form_submission_data`;*const report1 = AdsApp.report(query1);
report1.exportToSheet(sheet1);  }


*Reference Sites:*
https://developers.google.com/google-ads/api/fields/v13/lead_form_submission_data_query_builder

I would appreciate your help in identifying the missing column names. 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/d0f0ccf0-6d3d-4140-a860-e371817ad4b1n%40googlegroups.com.


Re: use location asset and call asset in pmax via api

2023-04-27 Thread msgu...@gmail.com
 Hey team,

I means asset-based extension. Could I link them to pmax campaign?

Thanks,
Guofu

On Thursday, April 27, 2023 at 5:34:06 AM UTC-7 Google Ads API Forum 
Advisor wrote:

> Hello,
>
> Thanks for reaching out to the Google Ads API Team.
>
> Kindly note that Assets in a Performance max campaign *documentation, *are 
> grouped together in a collection called an *AssetGroup*, which is unique 
> to Performance Max campaigns. Each campaign requires at minimum one asset 
> group. Assets are automatically mixed and matched based on which Google Ad 
> channel (YouTube, Gmail, Search, etc.) your ad is being served on.
>
> Links for reference:
> *Documentation - *
> *https://developers.google.com/google-ads/api/docs/performance-max/assets* 
> 
> *AssetGroup - *
> *https://developers.google.com/google-ads/api/docs/performance-max/asset-groups*
>  
> 
>
> Regards,
> [image: Google Logo] Google Ads API Team 
>
> ref:_00D1U1174p._5004Q2kqtlD: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/04c4f7ac-40df-41f8-9751-2ac082ec79f4n%40googlegroups.com.


OPERATION_NOT_PERMITTED_FOR_CONTEXT

2023-04-27 Thread MEGANATHAN P
Hello Team,

Request ,
{
  "operations": [
{
  "create": {
"deliveryMethod": "STANDARD",
"type": "STANDARD",
"period": "DAILY",
"amountMicros": 7,
"name": "Test_google_ads_google_display20230427181647",
"explicitlyShared": true
  }
}
  ]
}
i  am getting error below error form thr google ads api how to fox this
response:

{
  "error": {
"code": 400,
"message": "Request contains an invalid argument.",
"status": "INVALID_ARGUMENT",
"details": [
  {
"@type": 
"type.googleapis.com/google.ads.googleads.v13.errors.GoogleAdsFailure",
"errors": [
  {
"errorCode": {
  "contextError": "OPERATION_NOT_PERMITTED_FOR_CONTEXT"
},
"message": "The operation is not allowed for the given 
context.",
"location": {
  "fieldPathElements": [
{
  "fieldName": "operations",
  "index": 0
}
  ]
}
  }
],
"requestId": "tCsl9-nVnNKiidFsHgt-6w"
  }
]
  }
}


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/e6c01113-8b54-40d6-a7eb-0a3969f20965n%40googlegroups.com.


Re: error trying to get metrics.phone_calls for customer

2023-04-27 Thread JP Boily
You should update your doc then, as it's shown as Selectable in the doc in 
the Customer. :)

But thanks for the confirmation!

On Thursday, April 27, 2023 at 5:03:29 a.m. UTC-4 Google Ads API Forum 
Advisor wrote:

> Hi,
>
> Thank you for raising this concern to the Google Ads API support team.
>
> Regarding your concern, please note that the metrics.phone_calls is not a 
> compatible/selectable metric for the customer report and this is the reason 
> why you are getting the said error. Kindly note that for you to know what 
> fields that are compatible or selectable to a specific report, you will 
> need to select the '*Yes it is*' option in the dropdown of a specific 
> report. I would suggest using the *customer_query_builder* (
> https://developers.google.com/google-ads/api/fields/v13/customer_query_builder)
>  
> as this will greatly help you build and validate your query.
>
> Let us know if you have further questions.
>
> Regards,
> [image: Google Logo] Google Ads API Team 
>
> ref:_00D1U1174p._5004Q2kqou6: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/e4f31442-913a-4983-a24e-a2c9f2271dcbn%40googlegroups.com.


Re: Total active products in each Performance Campaign

2023-04-27 Thread shahids...@gmail.com
Hi, How can I get the count using Google Ads API?

On Thursday, March 9, 2023 at 8:09:54 PM UTC+5 Google Ads API Forum Advisor 
wrote:

> Hi Benjamin,
>
> I hope you're doing well. Thank you for posting your concern.
>
> Regarding your concern, you mentioned that you want to know if getting a 
> report that had a list of all my PMax campaigns and then the total active 
> product count next to it is possible with the Google Ads Scripts. 
> However, please note that our team provides support to Google Ads API 
> -related 
> concerns *only*. Having said that, I would recommend reaching out to the 
> Google 
> Ads Scripts Forum  as this 
> appears to be related to Google Ads Scripts.
>
> Regards,
> [image: Google Logo] Google Ads API Team 
>
> ref:_00D1U1174p._5004Q2jXg2t: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/66e06a2a-a2d2-4a0a-a8be-45722b91ebd7n%40googlegroups.com.


Get all products in a PMax campaign

2023-04-27 Thread shahids...@gmail.com
I use the following code to get all products in an ad account : 

$query = 'SELECT ad_group_criterion.resource_name, '
. ' 
ad_group_criterion.listing_group.case_value.product_item_id.value, '
. ' ad_group_criterion.status, ad_group.id, campaign.id '
. ' FROM ad_group_criterion WHERE ad_group_criterion.type = 
"LISTING_GROUP"';

This does not return products that are within a PMax campaign. How can I 
get all the products in a PMax campaign?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/ce6cca77-041f-4eb4-8990-3723f0bb1285n%40googlegroups.com.


INVALID_CUSTOMER_ID while accessing KeywordPlanIdeaService

2023-04-27 Thread 'Ajay Balgovind Kuril' via Google Ads API and AdWords API Forum
Hi I am getting invalid customer id error, traceback is as follows: 
please let me know the reason as customer id is correct
keyword_ideas = keyword_plan_idea_service.generate_keyword_ideas(
  File 
"/usr/local/lib/python3.9/site-packages/google/ads/googleads/v13/services/services/keyword_plan_idea_service/client.py",
 
line 436, in generate_keyword_ideas
response = rpc(
  File 
"/usr/local/lib/python3.9/site-packages/google/api_core/gapic_v1/method.py", 
line 113, in __call__
return wrapped_func(*args, **kwargs)
  File 
"/usr/local/lib/python3.9/site-packages/google/api_core/grpc_helpers.py", 
line 72, in error_remapped_callable
return callable_(*args, **kwargs)
  File "/usr/local/lib/python3.9/site-packages/grpc/_interceptor.py", line 
247, in __call__
response, ignored_call = self._with_call(request,
  File "/usr/local/lib/python3.9/site-packages/grpc/_interceptor.py", line 
290, in _with_call
return call.result(), call
  File "/usr/local/lib/python3.9/site-packages/grpc/_interceptor.py", line 
146, in result
raise self._exception
  File "/usr/local/lib/python3.9/site-packages/grpc/_interceptor.py", line 
274, in continuation
response, call = self._thunk(new_method).with_call(
  File "/usr/local/lib/python3.9/site-packages/grpc/_interceptor.py", line 
301, in with_call
return self._with_call(request,
  File "/usr/local/lib/python3.9/site-packages/grpc/_interceptor.py", line 
290, in _with_call
return call.result(), call
  File "/usr/local/lib/python3.9/site-packages/grpc/_interceptor.py", line 
146, in result
raise self._exception
  File "/usr/local/lib/python3.9/site-packages/grpc/_interceptor.py", line 
274, in continuation
response, call = self._thunk(new_method).with_call(
  File "/usr/local/lib/python3.9/site-packages/grpc/_interceptor.py", line 
301, in with_call
return self._with_call(request,
  File "/usr/local/lib/python3.9/site-packages/grpc/_interceptor.py", line 
287, in _with_call
call = self._interceptor.intercept_unary_unary(continuation,
  File 
"/usr/local/lib/python3.9/site-packages/google/ads/googleads/interceptors/exception_interceptor.py",
 
line 99, in intercept_unary_unary
self._handle_grpc_failure(response)
  File 
"/usr/local/lib/python3.9/site-packages/google/ads/googleads/interceptors/exception_interceptor.py",
 
line 71, in _handle_grpc_failure
raise self._get_error_from_response(response)
google.ads.googleads.errors.GoogleAdsException: (<_InactiveRpcError of RPC 
that terminated with:
status = StatusCode.INVALID_ARGUMENT
details = "Request contains an invalid argument."
debug_error_string = "UNKNOWN:Error received from peer 
ipv4:142.251.42.106:443 {grpc_message:"Request contains an invalid 
argument.", grpc_status:3, created_time:"2023-04-27T18:14:12.833278+05:30"}"
>, <_InactiveRpcError of RPC that terminated with:
status = StatusCode.INVALID_ARGUMENT
details = "Request contains an invalid argument."
debug_error_string = "UNKNOWN:Error received from peer 
ipv4:142.251.42.106:443 {grpc_message:"Request contains an invalid 
argument.", grpc_status:3, created_time:"2023-04-27T18:14:12.833278+05:30"}"
>, errors {
  error_code {
request_error: INVALID_CUSTOMER_ID
  }
  message: "Invalid customer ID \'\'."
}
request_id: "d6nJi-4xxCBMqqBJh6MU3w"
, 'd6nJi-4xxCBMqqBJh6MU3w')

-- 
*The content of this email including any attachment(s) is confidential and 
intended for the recipient(s) specified in this message only. This message 
and/or any attachment(s) may be privileged or otherwise protected as per 
applicable laws. It is strictly forbidden to make copies of or share any 
part of this message including any attachment(s)  with any third party, 
without a written consent of the sender. If you received this message by 
mistake, please reply to this message and let us know and delete the email 
and any attachment(s) from your system.*

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/6c28101f-e8fc-4ee3-b3e0-412be72b0047n%40googlegroups.com.


RE: use location asset and call asset in pmax via api

2023-04-27 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hello,

Thanks for reaching out to the Google Ads API Team.

Kindly note that Assets in a Performance max campaign documentation, are 
grouped together in a collection called an AssetGroup, which is unique to 
Performance Max campaigns. Each campaign requires at minimum one asset group. 
Assets are automatically mixed and matched based on which Google Ad channel 
(YouTube, Gmail, Search, etc.) your ad is being served on.

Links for reference:
Documentation - 
https://developers.google.com/google-ads/api/docs/performance-max/assets
AssetGroup - 
https://developers.google.com/google-ads/api/docs/performance-max/asset-groups

Regards,

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


Re: how to appeal disapproved asset via api?

2023-04-27 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi,

You're welcome. If you have any concerns related to Google Ads API, please do 
not hesitate to reach out to us again.

Kind regards,

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


Re: Marketing Objective Setup for a Campaign via API

2023-04-27 Thread Roi Yad Shalom
Hey, Can you tell me what settings does the marketing objective Setup 
change on the API so I can do it manually?


On Tuesday, February 28, 2023 at 1:12:46 PM UTC+2 Google Ads API Forum 
Advisor wrote:

> Hi Matt,
>
> Thank you for following up this concern.
>
> If you are asking for the status regarding feature request *Marketing 
> Objective Setup*, I'm afraid that our team hasn't received any new 
> information. For now, you may please follow our blog post 
>  as we 
> will post relevant updates there.
>
> Best regards,
> [image: Google Logo] Google Ads API Team 
>
> ref:_00D1U1174p._5004Q2W3Ilj: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/cb7bb4b6-453d-400e-bad1-65a12f70be72n%40googlegroups.com.


Private message regarding: Metro ids nowhere to be found inside Geo target csv

2023-04-27 Thread 'Alin Baicu' via Google Ads API and AdWords API Forum
Hi, 

This is not a problem of a request is more like a question, I want to know 
if, in the geo target 
csv 
https://developers.google.com/static/google-ads/api/data/geo/geotargets-2023-03-28.csv.zip
 
, I can find segments.geoTargetMetro.

On Wednesday, April 26, 2023 at 5:44:54 PM UTC+3 Google Ads API and AdWords 
API Forum wrote:

Hi,

I am from the Google Ads API support team.

Regarding this issue, please note that the *Google Ads API* mirrors the 
Google Ads UI. Meaning the Google Ads API should be able to manage and 
retrieve the data that the Google Ads UI shows. In order for our team to 
better check and investigate this issue on our end, can you provide the 
below data?

   - Provide the complete *request* and *response* logs with *request ID* 
   and *request header* generated on your end.
   - Complete screenshots (without cropping) from the Google Ads 
   UI/Interface showing the data you want to retrieve via the Google Ads API


You may then send the requested logs via the *Reply privately to author* 
option. If this option is not available, you may send the details directly 
to our googleadsa...@google.com alias instead.

In addition, since this is specifically about reporting, I would suggest 
referring to our *Reporting* and *Reports* guides for more information 
about this.

Links included in this email:

   - *Google Ads API* - 
   https://developers.google.com/google-ads/api/docs/start
   - *request* - 
   
https://developers.google.com/google-ads/api/docs/concepts/field-service#request
   - *response* - 
   
https://developers.google.com/google-ads/api/docs/concepts/field-service#response
   - *request ID* - 
   
https://developers.google.com/google-ads/api/docs/concepts/call-structure#request-id
   - *request header* - 
   
https://developers.google.com/google-ads/api/docs/concepts/call-structure#request_headers
   - *Reporting* - 
   https://developers.google.com/google-ads/api/docs/reporting/overview
   - *Reports* - 
   https://developers.google.com/google-ads/api/fields/v13/overview


Regards,
Google Ads API Team
On Wednesday, April 26, 2023 at 10:11:02 PM UTC+8 aba...@grubhub.com wrote:

Hello,

We query the geo performance metrics report, we get 5 levels to test the 
daily performance (country_territory, region, metro, city, and  
most_specific_location), after we get the geo-locations ids we try to get 
their names in order to have a better understanding and further analysis. 
We failed to find the metro_ids in the csv geo targets. The metro ids are 
only available in the LocationCriterionService 

?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/aa070c1e-7e5e-4e2c-adab-2244b3221924n%40googlegroups.com.


RE: error trying to get metrics.phone_calls for customer

2023-04-27 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.

Regarding your concern, please note that the metrics.phone_calls is not a 
compatible/selectable metric for the customer report and this is the reason why 
you are getting the said error. Kindly note that for you to know what fields 
that are compatible or selectable to a specific report, you will need to select 
the 'Yes it is' option in the dropdown of a specific report. I would suggest 
using the customer_query_builder 
(https://developers.google.com/google-ads/api/fields/v13/customer_query_builder)
 as this will greatly help you build and validate your query.

Let us know if you have further questions.

Regards,

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


RE: assets data by customer id : google-ads-api php

2023-04-27 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi Sourabh,

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

I can see that you encountered an error message "Maximum execution time of 60 
seconds exceeded". To further investigate this on our end, complete request and 
response logs with request ID and request header generated on your end? 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. If you haven't enabled the logging 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 
https://developers.google.com/google-ads/api/docs/client-libs?hl=en.

Reference links:

request - 
https://developers.google.com/google-ads/api/docs/concepts/field-service#request
response - 
https://developers.google.com/google-ads/api/docs/concepts/field-service#response
request ID - 
https://developers.google.com/google-ads/api/docs/concepts/call-structure#request-id
request header - 
https://developers.google.com/google-ads/api/docs/concepts/call-structure#request_headers


Kind regards,

Google Ads API Team

​​​
ref:_00D1U1174p._5004Q2kqrDD: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/KSy0f0RTRN4S00SUuw6xfjR7CTbD2s63cZqQ%40sfdc.net.


Re: report for several accounts at same time.

2023-04-27 Thread Vlad Iureniev
Thank you for a quick answer but I still can't see a solution 
Maybe I will try to explain better.
Let's imagine we have this structure:
"ManagerAccount1"---CustomerAccount01
  |-CustomerAccunt02
  |-CustomerAccunt03
So we have a manager account and 3 customer ones
If I do the REST request to   
*/v13/customers/{ManagerAccount1}/googleAds:**search*  with "*SELECT 
 FROM campaigns WHERE customer.id in (*
*CustomerAccount01,CustomerAccount01,CustomerAccount03)"*
I get the 0 lines as management account doesn't have any campaign

>From the another side if I requesting:
*/v13/customers/{* *CustomerAccount01*  *}/googleAds:**search*  
endpoint with "*SELECT  FROM campaigns WHERE customer.id in (*
*CustomerAccount01,CustomerAccount01,CustomerAccount03)"*
I get the list of campaigns for  CustomerAccount01 only

So how I can get all campaigns for all customers we manage in one request?
Same regarding the reports. I can get one customer data per request.
Thank you.

On Wednesday, April 19, 2023 at 1:55:30 AM UTC-7 Google Ads API Forum 
Advisor wrote:

> Hi Vlad,
>
> You have now reached the Google Ads API Team.
>
> Please note that our support channel can provide assistance related to 
> *Google 
> Ads API *(https://developers.google.com/google-ads/api/docs/start) 
> technical issues only. If you mean for "*several accounts" *are "*several 
> customer Id's"*,  you may try to retrieve the report for several accounts 
> by Adding* several customer.id 's *to the *WHERE* 
> clause in the *IN* operator.
>
> On the other hand, you may check this documentation for more information 
> on *Google Ads Query Language Grammar.*
>
> documentation: 
> https://developers.google.com/google-ads/api/docs/query/grammar
>
> Best regards,
> [image: Google Logo] Google Ads API Team 
>
> ref:_00D1U1174p._5004Q2knpEB: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/7cf4709e-6500-4dbe-8c94-4592b270352en%40googlegroups.com.


use Location Asset and Call Asset in pmax via API

2023-04-27 Thread msgu...@gmail.com
Hi Team,

Could you confirm that we can create and link location asset and call asset 
set to pmax *via API  *as this 
doc: https://developers.google.com/google-ads/api/docs/assets/overview

These asset, such as sitelink asset, call asset, location asset are not 
mentioned in pmax document.
https://developers.google.com/google-ads/api/docs/performance-max/overview 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/aa0f768c-47c2-4b9d-b7e8-9e7d75806acen%40googlegroups.com.


Re: how to appeal disapproved asset via api?

2023-04-27 Thread msgu...@gmail.com
Got it. Thank you

On Thursday, April 27, 2023 at 12:12:46 AM UTC-7 Google Ads API Forum 
Advisor wrote:

> Hi,
>
> Thank you for returning to our team.
>
> Regarding your concern, please note that assets can be approved or 
> disapproved just like ads and keywords. Disapproved assets do not show and 
> need to be edited and submitted for re-review. As mentioned, you need to 
> edit these disapproved assets and submit for re-review. For more 
> information, you may check this* About assets* article. 
>
> Also, the *Policy Exemption Requests* in Google Ads API let you 
> automatically submit review requests for *keywords* and *ads* that 
> trigger policy violations. Since these are for *keywords* and *ads *only 
> and this is about an appeal for a disapproved asset, I would suggest you 
> reach out instead to the Product Team via this *link*, as they are better 
> equipped to provide guidance on this matter.
>
> Links included in this email: 
>
>- *About assets - *
>https://support.google.com/google-ads/answer/733?hl=en 
>- *Policy Exemption Requests - *
>
> https://developers.google.com/google-ads/api/docs/policy-exemption/overview 
>- *link - *https://support.google.com/google-ads/gethelp 
>
>
> Regards,
>
> [image: Google Logo] Google Ads API Team 
>
> ref:_00D1U1174p._5004Q2kqRdC: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/69121c47-b57f-4985-8952-6df69f4cfc59n%40googlegroups.com.


What causes the account balance to be negative

2023-04-27 Thread dongfu li
Because there are a large number of accounts on our end that have negative 
account balances (which is the account budget you mentioned), and users can 
continue to consume, I am not sure why the account balance (which is the 
account budget you mentioned) has negative numbers. According to the rule 
you described, if an account's budget remains 0, it will not be consumed, 
But a large number of accounts on our end have encountered the problem of 
negative account budgets. What is the reason for the negative account 
budgets?

There was a negative number issue when calling the interface to pull the 
account budget. Account: 9392830097

There was a negative number issue when calling the interface to pull the 
account budget. Please refer to the following figure

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/d917a8df-43dd-4e50-a73a-f66526968acan%40googlegroups.com.