RE: budget issue in creation new campaign.

2021-11-15 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Hi Oleg,

Thank you for posting your concern.

You may try to remove the implementation for creating a budget, then you may 
insert a report for campaign_budget to get the resource name of the campaign 
budget. After retrieving the resource name, then set it to the campaign_budget 
field of the Campaign resource.

Let me know if you have questions with the provided suggestion.

Regards,

Reminder: Share your feedback about the Google Ads (AdWords) API! Take the 2021 
Google Ads API and AdWords API Annual Survey

Ernie John Blanca Tacata
Google Ads API Team
ref:_00D1U1174p._5004Q2R92yB: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 
"AdWords API and Google Ads 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/JJKc_0R2LTEV00OzKzpRZlQvucfkUJ5WlFUg%40sfdc.net.


Re: budget issue in creation new campaign.

2021-11-15 Thread jindong o
you should use budget resource.
and you can check Campaign resource class.
It is important to look at the class definition and variable types and 
names while using the google ads api.
this is my past working code snippet. 
$budgetResourceName = self::addCampaignBudget($googleAdsClient, 
$cam_infos['customer_id'], $cam_infos['campaign_budget']);
.
$campaign = new Campaign([
'name' => $cam_infos['campaign_name'],
'advertising_channel_type' => 
$cam_infos['advertising_channel_type'],  
'status' => $cam_infos['status'],
'manual_cpc' => new 
ManualCpc(['enhanced_cpc_enabled'=>true]),

'bidding_strategy_type'=>$cam_infos['bidding_strategy_type'],
'tracking_url_template'=>$cam_infos['tracking_template'],
'campaign_budget' => $budgetResourceName,
'network_settings' => $networkSettings,
'start_date' => $cam_infos['start_date'],
//'end_date' => $cam_infos['end_date']
]);
..
private static function addCampaignBudget(GoogleAdsClient $googleAdsClient, 
int $customerId,int $campaign_budget){
// Creates a campaign budget.
$budget = new CampaignBudget([
'name' => 'non shared budget#' . Helper::getPrintableDatetime(),
'delivery_method' => BudgetDeliveryMethod::STANDARD,
'amount_micros' => $campaign_budget,
'explicitly_shared' => false // this is for non-shared budget
]);

// Creates a campaign budget operation.
$campaignBudgetOperation = new CampaignBudgetOperation();
$campaignBudgetOperation->setCreate($budget);

// Issues a mutate request.
$campaignBudgetServiceClient = 
$googleAdsClient->getCampaignBudgetServiceClient();
$response = $campaignBudgetServiceClient->mutateCampaignBudgets(
$customerId,
[$campaignBudgetOperation]
);

/** @var CampaignBudget $addedBudget */
$addedBudget = $response->getResults()[0];
//printf("Added budget named '%s'%s", 
$addedBudget->getResourceName(), PHP_EOL);

return $addedBudget->getResourceName();
}
On Monday, November 15, 2021 at 3:18:19 PM UTC+8 ol...@disrupt.social wrote:

> Hello
> when i try to run this script,  I can see new budget(shared budget) with 
> new campaign.
> php examples/BasicOperations/AddCampaigns.php --customerId 9641267633
> I only want to create new campaign with individual campaign budget (only 
> budget number) not user addCampaignBudget 
> for example
> $campaign = new Campaign([
> 'name' => 'campaign1',
> 
> 'campaign_budget' => 10,
> ...
> ]);
>
> How can i do that?
> Thanks
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads 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/421a9eea-1408-4f3b-b6d3-71b6bc804442n%40googlegroups.com.


What is the request limit of google ads api per day?

2021-11-15 Thread jindong o
I manage campaigns for over 2000 sites.
Weekly campaign parameters are updated using api.
However, google sometimes processes about 2000 requests, but on some days, 
it processes 600 campaign updating requests and displays an error message 
"too many requests, Retry 79040 seconds".
I want to know google's request limit rule.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"AdWords API and Google Ads 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/3fd8bddb-d5ce-4ab6-9020-4cb4cf7fd010n%40googlegroups.com.


Re: budget issue in creation new campaign.

2021-11-15 Thread jindong o
Yes, Sample code use shared budget.
you can use non-shared budget like this...
$budget = new CampaignBudget([
'name' => 'non shared budget#' . Helper::getPrintableDatetime(),
'delivery_method' => BudgetDeliveryMethod::STANDARD,
'amount_micros' => $campaign_budget,
   * 'explicitly_shared' => false*
]);


On Monday, November 15, 2021 at 4:13:41 PM UTC+8 jindong o wrote:

> you should use budget resource.
> and you can check Campaign resource class.
> It is important to look at the class definition and variable types and 
> names while using the google ads api.
> this is my past working code snippet. 
> $budgetResourceName = self::addCampaignBudget($googleAdsClient, 
> $cam_infos['customer_id'], $cam_infos['campaign_budget']);
> .
> $campaign = new Campaign([
> 'name' => $cam_infos['campaign_name'],
> 'advertising_channel_type' => 
> $cam_infos['advertising_channel_type'],  
> 'status' => $cam_infos['status'],
> 'manual_cpc' => new 
> ManualCpc(['enhanced_cpc_enabled'=>true]),
> 
> 'bidding_strategy_type'=>$cam_infos['bidding_strategy_type'],
> 'tracking_url_template'=>$cam_infos['tracking_template'],
> 'campaign_budget' => $budgetResourceName,
> 'network_settings' => $networkSettings,
> 'start_date' => $cam_infos['start_date'],
> //'end_date' => $cam_infos['end_date']
> ]);
> ..
> private static function addCampaignBudget(GoogleAdsClient 
> $googleAdsClient, int $customerId,int $campaign_budget){
> // Creates a campaign budget.
> $budget = new CampaignBudget([
> 'name' => 'non shared budget#' . 
> Helper::getPrintableDatetime(),
> 'delivery_method' => BudgetDeliveryMethod::STANDARD,
> 'amount_micros' => $campaign_budget,
> 'explicitly_shared' => false // this is for non-shared budget
> ]);
>
> // Creates a campaign budget operation.
> $campaignBudgetOperation = new CampaignBudgetOperation();
> $campaignBudgetOperation->setCreate($budget);
>
> // Issues a mutate request.
> $campaignBudgetServiceClient = 
> $googleAdsClient->getCampaignBudgetServiceClient();
> $response = $campaignBudgetServiceClient->mutateCampaignBudgets(
> $customerId,
> [$campaignBudgetOperation]
> );
>
> /** @var CampaignBudget $addedBudget */
> $addedBudget = $response->getResults()[0];
> //printf("Added budget named '%s'%s", 
> $addedBudget->getResourceName(), PHP_EOL);
>
> return $addedBudget->getResourceName();
> }
> On Monday, November 15, 2021 at 3:18:19 PM UTC+8 ol...@disrupt.social 
> wrote:
>
>> Hello
>> when i try to run this script,  I can see new budget(shared budget) with 
>> new campaign.
>> php examples/BasicOperations/AddCampaigns.php --customerId 9641267633
>> I only want to create new campaign with individual campaign budget (only 
>> budget number) not user addCampaignBudget 
>> for example
>> $campaign = new Campaign([
>> 'name' => 'campaign1',
>> 
>> 'campaign_budget' => 10,
>> ...
>> ]);
>>
>> How can i do that?
>> Thanks
>>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads 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/b450a35c-8c32-450c-98bc-b67ceb4c78e6n%40googlegroups.com.


RE: What is the request limit of google ads api per day?

2021-11-15 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Hi Jindong,

Thank you for reaching out to our API support team.

To better assist you, could you provide to our team with the complete request 
and response logs, with the request-id, generated when you encountered the 
limit errors? You may then send the requested information via the Reply 
privately to author option. If this option is not available, you may send the 
details directly to our googleadsapi-supp...@google.com alias instead.

Also, if you are referring to the QPS limit mentioned here, then we currently 
do not have the exact limit. The workaround is to mitigate or reduce the 
requests you perform, within a short period, to avoid this error.

Best regards,

Reminder: Share your feedback about the Google Ads (AdWords) API! Take the 2021 
Google Ads API and AdWords API Annual Survey

Peter Laurence Napa Oliquino
Google Ads API Team
ref:_00D1U1174p._5004Q2R93Ts: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 
"AdWords API and Google Ads 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/2bKT60R2LV5500BM3mT3zNRluKE7gXmibkEA%40sfdc.net.


Get Ad Details From Webhook Request Data

2021-11-15 Thread Anant Trivedi
I have created a webhook API so that when any lead is captured on extension 
form, the details flows to our CRM and we can store details at our end.

>From the lead details we got from Google as request data, we need to get Ad 
details like AdId, AdName, etc. We are able to get the ad_group details but 
how we can get that lead's ad detail? We can't find ad_id in the request 
data received from google. Following json object I got from one article and 
it doesn't have ad_id. So how I can get ad details from the following lead 
detail?

{
  
"lead_id":"Cj0KCQjwit_8BRCoARIsAIx3Rj7g-AeL6z35IWb6VYiZUygtTfwD3hDlgSGmY-XTTlK3lfV1wcuIwIAaAmMxEALw_wcB",
  "campaign_id":123456,
  "adgroup_id":0,
  "creative_id":0,
  
"gcl_id":"Cj0KCQjwit_8BRCoARIsAIx3Rj7g-AeL6z35IWb6VYiZUygtTfwD3hDlgSGmY-XTTlK3lfV1wcuIwIAaAmMxEALw_wcB",
  "user_column_data": [
{
  "column_name": "Full Name",
  "string_value":"FirstName LastName",
  "column_id": "FULL_NAME"
},
{
  "column_name":"User Phone",
  "string_value":"1-650-555-0123",
  "column_id":"PHONE_NUMBER"
},
{
  "column_name":"User Email",
  "string_value":"t...@example.com",
  "column_id":"EMAIL"
}],
  "api_version":"1.0",
  "form_id":123456789,
  "google_key":"testkey",
  "is_test":true
}

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"AdWords API and Google Ads 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/04f74629-3665-41cf-9109-81a02a40bdben%40googlegroups.com.


RE: budget issue in creation new campaign.

2021-11-15 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Hi everyone,

Thank you Jindong for your input regarding the explicitly_shared attribute.

@Oleg, you can also check here, for more information on how to set a campaign 
budget only for a single campaign. If you continue to encounter issues, you may 
provide our team with the complete request and response logs, along with the 
request-id.

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

Best regards,

Reminder: Share your feedback about the Google Ads (AdWords) API! Take the 2021 
Google Ads API and AdWords API Annual Survey

Peter Laurence Napa Oliquino
Google Ads API Team
ref:_00D1U1174p._5004Q2R92yB: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 
"AdWords API and Google Ads 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/WIKNr0R2LWHD009tgK2RAETPKmS2f1YJVgdw%40sfdc.net.


Re: How to properly update the assets in an ad group

2021-11-15 Thread Evgeniy Lepikov
Hi Aryeh,
Thank you for help!

Perhaps there is an example of a query using GetAdGroupAd via API ? What 
parameters are returned?  Optimally if for python
пятница, 12 ноября 2021 г. в 20:07:32 UTC, adsapi: 

> Hi Evgeniy,
>
> I reproduced this behavior that and app ad cannot be removed with a remove 
> operation from adGroupAd. You may remove the AdGroup. If you want to 
> replicate the ad before removing it you can do a get of the 
> AdGroupAdService 
> 
>  
> and create the new adGroup with adGroupAd with the contents of that 'get' 
> response. Feel free to get back to us.
>
> Reminder: Share your feedback about the Google Ads (AdWords) API! Take the 
> 2021 
> Google Ads API and AdWords API Annual Survey 
> 
>
> Regards,
>   
> [image: Google Logo] 
> Aryeh Baker 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2R8YmX: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 
"AdWords API and Google Ads 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/7f7c5dbc-162d-4f74-8618-901afc8fd620n%40googlegroups.com.


RE: unsupported language

2021-11-15 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Hi Prashant,

Thanks for reaching out to us.

Please note that this forum channel can only provide assistance to 
issues/concerns related to the AdWords API / Google Ads API.  Please confirm if 
it is indeed related to the said APIs, and provide more details to it so that I 
can investigate. If encountering API errors, you may provide us with the 
complete request and response logs with the request-id, and any other sensitive 
information via the Reply privately to author option.

Regards,
Reminder: Share your feedback about the Google Ads (AdWords) API! Take the 2021 
Google Ads API and AdWords API Annual Survey

Yasar Ramjan Makandar
Google Ads API Team
ref:_00D1U1174p._5004Q2R910c: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 
"AdWords API and Google Ads 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/C9t020R2LXGO00FD3Cqv-rRKKzq7_RINvkaA%40sfdc.net.


RE: get all accounts under my manage account.

2021-11-15 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Hi,

Thanks for posting your concern to us.

Could you provide us with the complete request and response logs with the 
request-id generated when an error is encountered, so our team can better check?

If you haven't yet, logging can be enabled by navigating to the Client 
libraries > Your client library (ex. PHP) > Logging documentation, which you 
can access from this link. You may then send the requested information via the 
Reply privately to author option. If this option is not available, you may send 
the details directly to our googleadsapi-supp...@google.com alias instead.

Regards,
Reminder: Share your feedback about the Google Ads (AdWords) API! Take the 2021 
Google Ads API and AdWords API Annual Survey

Yasar
Google Ads API Team
ref:_00D1U1174p._5004Q2R92IS: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 
"AdWords API and Google Ads 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/0VeFK0R2LXI800LT43lpDsQ7602IfWC78loA%40sfdc.net.


googleadsapi-supp...@google.com

2021-11-15 Thread Oleg Disrupt
 
Hello
I want to get all accounts in my manager account.
I tried to get the account list using below example
php examples/AccountManagement/ListAccessibleCustomers.php
but I can see all manage accounts like top right in my account.
so I want to get all accounts in accounts->performance.

I tried to get my all accounts with below code
php examples/AccountManagement/GetAccountHierarchy.php
it shows manager account list and shows error hierarchy account

PHP Fatal error:  Uncaught BadMethodCallException: Streaming calls are not 
supported while using the REST transport. in E:\xec\Test\google-ads-php\
vendor\google\gax\src\Transport\HttpUnaryTransportTrait.php:148
Stack trace:
#0 E:\xec\Test\google-ads-php\vendor\google\gax\src\Transport\
HttpUnaryTransportTrait.php(64): Google\ApiCore\Transport\RestTransport->
throwUnsupportedException()
#1 E:\xec\Test\google-ads-php\vendor\google\gax\src\GapicClientTrait.php(601): 
Google\ApiCore\Transport\RestTransport->startServerStreamingCall(Object(Google\ApiCore\Call),
 
Array)
#2 E:\xec\Test\google-ads-php\vendor\google\gax\src\Middleware\
CredentialsWrapperMiddleware.php(61): Google\Ads\GoogleAds\V8\
Services\Gapic\GoogleAdsServiceGapicClient->Google\ApiCore\{closure}(Object(Google\ApiCore\Call),
 
Array)
#3 
E:\xec\Test\google-ads-php\vendor\google\gax\src\Middleware\FixedHeaderMiddleware.php(66):
 
Google\ApiCore\Middleware\CredentialsWrapperMiddleware->
__invoke(Object(Google\ApiCore\Call), Array)
#4 E:\xec\Test\google-ads-php\vendor\google\gax\sr in 
E:\xec\Test\google-ads-php\vendor\google\gax\src\Transport\HttpUnaryTransportTrait.php
 
on line 148

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"AdWords API and Google Ads 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/ffb04d7f-565a-4bd8-8b31-403be5218ce8n%40googlegroups.com.


setting language parameter in new campaign class

2021-11-15 Thread Oleg Disrupt
Hello,
I want to add the language that I want when i created the new campaign.
for example
$campaign = new Campaign([
'name' => 'campaign1',
'language' => english
]);
I can't see 'language' parameter in campaign class.

Can you help me?
Regards
oleg

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"AdWords API and Google Ads 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/df0913fb-4a64-415b-9496-6552764fc194n%40googlegroups.com.


RE: googleadsapi-supp...@google.com

2021-11-15 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Hi,

Thanks for reaching out to us.

I can see that you’ve created another duplicate of the forum thread for the 
same issue and we will respond to you on this thread for better issue tracking.

Regards,
Reminder: Share your feedback about the Google Ads (AdWords) API! Take the 2021 
Google Ads API and AdWords API Annual Survey

Yasar Ramjan Makandar
Google Ads API Team
ref:_00D1U1174p._5004Q2R94IM: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 
"AdWords API and Google Ads 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/dmyDU0R2M0T600ye-Sgs3STsK7sxzBm-iG3Q%40sfdc.net.


Any update on feed base to asset base extension migration?

2021-11-15 Thread Boris DETRY
Feed based extensions should have been migrated after October 10 
automatically. But none of our extensions have been migrated yet, they 
still use the "old paradigm".

Any update on the automatic migration? 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"AdWords API and Google Ads 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/06ba4da3-dc8b-43bf-ba2e-f3c9dba8c6a6n%40googlegroups.com.


Re: Uploading Image Assets via REST API

2021-11-15 Thread 'Greg Asquith' via AdWords API and Google Ads API Forum
Hi,

Has there been an update on this issue please?

Thanks

On Wednesday, 10 November 2021 at 19:41:42 UTC adsapi wrote:

> Hi Greg,
>
> Thank you for sharing the video and the logs, I reproduced this behavior 
> where a picture uploaded via API didn't get a saved crop while an upload in 
> the UI did get cropped and saved for the ad. I shared this with my team and 
> we will get back to you as soon as possible.
>
>
> Reminder: Share your feedback about the Google Ads (AdWords) API! Take the 
> 2021 
> Google Ads API and AdWords API Annual Survey 
> 
>
> Regards,
>   
> [image: Google Logo] 
> Aryeh Baker 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2R79hV: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 
"AdWords API and Google Ads 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/a39adbb6-c016-4832-9953-7b952913b52fn%40googlegroups.com.


Re: Create campaign error

2021-11-15 Thread 娜娜
hello

I have upgraded the google ads api to V9, but I still don’t know how to set 
the conversion goal of the campaign. Are there any relevant examples? Thank 
you very much!

The screenshot was used for my test, but it seems to be incorrect

[image: 2025204227.png]
在2021年11月4日星期四 UTC+8 上午6:40:35 写道:

> Hello,
>
> I wanted to give an update. As of today, there is now a way to set 
> conversion goals for a campaign. We just released v9 of the Google Ads API (
> https://ads-developers.googleblog.com/2021/11/announcing-v9-of-google-ads-api.html).
>  
> In the release, there is a concept called Conversion Goals (
> https://developers.google.com/google-ads/api/docs/conversions/goals/overview) 
> where you can set custom goals for your campaign. You would need to upgrade 
> to this version to use the feature.
>
> Best,
>   
> [image: Google Logo] 
> Nadine Wang 
> Google Ads API Team 
>   Reminder: Share your feedback about the Google Ads (AdWords) API! Take 
> the 2021 Google Ads API and AdWords API Annual Survey 
> 
>
> ref:_00D1U1174p._5004Q2QGtpw: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 
"AdWords API and Google Ads 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/5c52ff29-d8e2-4226-ae72-9861f6677f97n%40googlegroups.com.


Re: Request had insufficient authentication scopes

2021-11-15 Thread 'Miloš Jedlinský' via AdWords API and Google Ads API Forum
Hello,

can you send me an email address so we can communicate in private about 
this topic?


Have a nice day, Miloš

Dne pátek 12. listopadu 2021 v 20:30:26 UTC+1 uživatel adsapi napsal:

> Hello,
>
> Thanks for reaching out. Your developer token MCC does not have to be 
> connected to the account hierarchy that you are targeting for API calls.
>
> If you can provide your complete request and response logs we can have a 
> closer look at this issue. 
>
> In the meantime, please ensure the following: 
>
>- You have enabled the Ads API in your Cloud Console project. 
>
> 
>  
>- The OAuth credentials have been properly set (e.g. if you are using 
>a supported client library, make sure that the credentials are set in the 
>configuration file) 
>
> Regards,
> Matt
> Google Ads API Team
>
>
> Reminder: Share your feedback about the Google Ads (AdWords) API! Take the 
> 2021 
> Google Ads API and AdWords API Annual Survey 
> 
>   
> [image: Google Logo] 
> Matt 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2R8X3J: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 
"AdWords API and Google Ads 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/71d0acda-faf1-469e-9a77-4ca253c4f148n%40googlegroups.com.


RE: how to get the geo data of google ads one day?

2021-11-15 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Hi,

Thanks for reaching out to us.

Upon checking the attached screenshots, could you provide us the screenshots 
translated in English labels in order to investigate further? Also, could you 
please provide us with the following details below, so that we can check better?

Provide the complete request and response logs with request ID generated on 
your end
Sample comparison of the Google ads UI and API where we can see the 
discrepancies


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

Regards,
Reminder: Share your feedback about the Google Ads (AdWords) API! Take the 2021 
Google Ads API and AdWords API Annual Survey

Yasar
Google Ads API Team
ref:_00D1U1174p._5004Q2R92V3: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 
"AdWords API and Google Ads 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/erqot0R2M9XC00Sn3k7mYpSPavU6kluW23RA%40sfdc.net.


RE: App list for app extension

2021-11-15 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Hi,

Thanks for reaching out to us.

Unfortunately, listing all the available apps to add an app extension is not 
possible.  You may use MobileAppAsset to identify app details, if you want to 
create these via the Google Ads API.

Regards,
Reminder: Share your feedback about the Google Ads (AdWords) API! Take the 2021 
Google Ads API and AdWords API Annual Survey

Yasar
Google Ads API Team
ref:_00D1U1174p._5004Q2R90ZW: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 
"AdWords API and Google Ads 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/jhYgR0R2M9ZT003DqhAZFARNSDdZbRfSlGIw%40sfdc.net.


Re: Bid Modifier for User Lists

2021-11-15 Thread Will Schymik
Thanks for the reply.

How would I then ensure that the ad group targets a global audience? It was 
my understanding that associating an ad group to a user list using an 
AdGroupCriterion caused the ad group to only be shown to users in the list. 
Instead I would like to target all potential Google Search users while 
providing a higher bid for those in my user list.

On Monday, November 15, 2021 at 12:07:09 AM UTC-5 adsapi wrote:

> Hi Will,
>
> I am also a member of the Google Ads API team and let me provide support 
> to your concern.
>
> To answer your question, you can use the 
> AdGroupCriterionService.MutateAdGroupCriteria 
> 
>  
> to set a bid modifier 
> 
>  
> between the association of the user list and ad group. 
>
> Let me know if you have further questions.
>
> Regards,
>
>
> Reminder: Share your feedback about the Google Ads (AdWords) API! Take the 
> 2021 
> Google Ads API and AdWords API Annual Survey 
> 
>   
> [image: Google Logo] 
> Ernie John Blanca Tacata 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2R8ZuI: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 
"AdWords API and Google Ads 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/41640dc0-f48f-4160-b2c3-8f5a66955263n%40googlegroups.com.


Take our Google Ads (AdWords) API Annual Developer Survey for 2021

2021-11-15 Thread 'Cory Liseno' via AdWords API and Google Ads API Forum
Hi Everyone!

*TLDR; Please take 10-15 minutes to share your feedback about the Google 
Ads API and the AdWords API on our Annual Google Ads API Developer Survey 
for 2021 
.*

As 2021 comes to a close, we’re looking forward to next year and how we can 
improve the Google Ads API developer experience. As we've done in past 
years, we're again asking for your feedback on the Google Ads API (and 
AdWords API, sunsetting in April 2022 
).

Last survey, you helped us understand your biggest pain points when using 
the Google Ads API. You also pointed us toward the features and 
functionality you like or want most. We've spent time in those areas over 
the last year, keeping your feedback in mind.

Please take 10-15 minutes to share your feedback about the Google Ads API 
and the AdWords API on our Annual Google Ads API Developer Survey for 2021 
.

Thanks!

Cory Liseno
Google Ads API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"AdWords API and Google Ads 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/c10cb08c-f66f-40a7-b7af-98959ddff06bn%40googlegroups.com.


Re: How to get the number of conversions for a certain conversion

2021-11-15 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Hi,

Thanks for letting us know that problem is solved. Feel free to contact us 
again if you have any concerns related to our API’s and we will be happy to 
assist you.

Regards,
Reminder: Share your feedback about the Google Ads (AdWords) API! Take the 2021 
Google Ads API and AdWords API Annual Survey

Yasar
Google Ads API Team
ref:_00D1U1174p._5004Q2R8Skk: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 
"AdWords API and Google Ads 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/TXeUb0R2MCJU00l_60_g5XSQ6jJ0PZibVKhQ%40sfdc.net.


Re: How to properly update the assets in an ad group

2021-11-15 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Hi Evgeniy,

I found out if you want to change the assets associated with the Campaign you 
can call AdService to change the assets on the Creative that is enabled instead 
of AdGroupAdService.

Regarding samples for a 'get' call in Python library you can reach out to their 
issue tracker.

With that being said, you can modify get_responsive_search_ads.py, most of the 
fields can be accessed in the underlying ad_group_ad report.

Reminder: Share your feedback about the Google Ads (AdWords) API! Take the 2021 
Google Ads API and AdWords API Annual Survey

Regards,

Aryeh Baker
Google Ads API Team
ref:_00D1U1174p._5004Q2R8YmX: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 
"AdWords API and Google Ads 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/XuWnL0R2MD7A00FmpC7KIITPux_NF5n6LYEg%40sfdc.net.


RE: Any update on feed base to asset base extension migration?

2021-11-15 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Hi Boris,

The migration isn't happening in one shot and it may have n ot happened yet to 
some customers. Could you privately send us your account number?

Reminder: Share your feedback about the Google Ads (AdWords) API! Take the 2021 
Google Ads API and AdWords API Annual Survey

Regards,

Aryeh Baker
Google Ads API Team
ref:_00D1U1174p._5004Q2R94yS: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 
"AdWords API and Google Ads 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/LJq5_0R2MFXE006M-k8EttS0GYT5qK2tti2Q%40sfdc.net.


RE: setting language parameter in new campaign class

2021-11-15 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Hi Oleg,

There isn't a way to set the language of a campaign through the 
CampaignService. However, you can set language as a campaign criterion using 
the CampaignCriterionService.

Regards,
Matt
Google Ads API Team


Reminder: Share your feedback about the Google Ads (AdWords) API! Take the 2021 
Google Ads API and AdWords API Annual Survey

Matt
Google Ads API Team
ref:_00D1U1174p._5004Q2R93oS: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 
"AdWords API and Google Ads 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/mCe9H0R2MJ3Q00k5xWixeER7uf9ayeQvLoWw%40sfdc.net.


Getting criterion ID for one keyword

2021-11-15 Thread Filip Pećanac
Hi,

When I run GetKeywords.php it displays info about all criterion keywords.

So, how should I structure my GAQL query when I want to get *just the 
criterion ID* for only one keyword that I have previously added?

Thanks in advance!

Regards,
Filip


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"AdWords API and Google Ads 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/fdc0dea9-717e-4446-8376-d34df6960d16n%40googlegroups.com.


Re: Ad Group Operating System Restriction

2021-11-15 Thread Lonny Kapelushnik
The screenshot from the UI is for a campaign with 'Display' ads.

On Monday, November 15, 2021 at 11:16:01 AM UTC-7 Lonny Kapelushnik wrote:

> In the UI you can set the operating system in the ad group settings 
> (screenshot attached).
>
> I am not seeing an operating system criterion in the AdGroupCriterion 
> .
>  
> How can this be duplicated via the API?
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads 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/660ed03e-aa11-423e-9b8e-65ba18e0f508n%40googlegroups.com.


RE: Get Ad Details From Webhook Request Data

2021-11-15 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Hello,

Thanks for reaching out to the Google Ads API support team. Unfortunately, we 
are unable to deal with your request, as our team specializes in Ads API 
technical support. I recommend please reach out to the Lead form Webhook 
support team here.

Let us know if you have any Ads API related issues or concerns.

Reminder: Share your feedback about the Google Ads (AdWords) API! Take the 2021 
Google Ads API and AdWords API Annual Survey

Best regards,

Jakeia Sabrina
Google Ads API Team
ref:_00D1U1174p._5004Q2R93dB: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 
"AdWords API and Google Ads 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/3Y5260R2MLWG00SBWv8czoQgmizrM2UQviKA%40sfdc.net.


all account list

2021-11-15 Thread Oleg Disrupt
Hi
I want to get all account list in accounts->performance using php, 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 
"AdWords API and Google Ads 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/7d5b9c70-5abf-4e33-9202-088a72fbfce1n%40googlegroups.com.


Re: Bid Modifier for User Lists

2021-11-15 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Hi Will,

You can reach out to product support to request this functionality, the API can 
only be a conduit to the product.

Reminder: Share your feedback about the Google Ads (AdWords) API! Take the 2021 
Google Ads API and AdWords API Annual Survey

Regards,

Aryeh Baker
Google Ads API Team
ref:_00D1U1174p._5004Q2R8ZuI: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 
"AdWords API and Google Ads 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/KhyfT0R2MRR900EYnp6xUOSk-rp2gML1_kfA%40sfdc.net.


Re: Request had insufficient authentication scopes

2021-11-15 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Hello,

If you click the three vertical dot button on the right side of this post, you 
can select 'reply privately to author'. This option will route your response to 
our private email.

Regards,
Matt
Google Ads API Team


Reminder: Share your feedback about the Google Ads (AdWords) API! Take the 2021 
Google Ads API and AdWords API Annual Survey

Matt
Google Ads API Team
ref:_00D1U1174p._5004Q2R8X3J: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 
"AdWords API and Google Ads 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/3C6-l0R2MSZV00iO-9zISUSkq0oEHn-g7aMg%40sfdc.net.


Re: Create campaign error

2021-11-15 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Hi,

To update the custom conversion goal, you'll want to send a request like the 
following example, with your customer, campaign, and custom goal IDs 
substituted.

{
operations': [
  {
'update': {
  'resourceName': 
'customers/YOUR_CUSTOMER_ID/conversionGoalCampaignConfigs/YOUR_CAMPAIGN_ID',
  'custom_conversion_goal': 
'customers/YOUR_CUSTOMER_ID/customConversionGoals/YOUR_CUSTOM_CONVERSION_GOAL_ID'
},
'updateMask': 'custom_conversion_goal'
  }
],
}

Note that you'll want to include the updateMask as shown above to indicate to 
the API that your intention is to update the custom_conversion_goal field.

If you previously encountered an IMMUTABLE_FIELD error with the message "Field 
'custom_conversion_goal' cannot be modified by 'UPDATE' operation", please try 
your request again. That error was due to an issue with the API that has since 
been fixed.

Cheers,
Josh, Google Ads API Team
ref:_00D1U1174p._5004Q2QGtpw: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 
"AdWords API and Google Ads 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/NaecF0R2N72100pRyx3oFHRe-BdTvE9cgWHg%40sfdc.net.


Re: how to get the geo data of google ads one day?

2021-11-15 Thread 'chaoming chen' via AdWords API and Google Ads API Forum
I use the official website laravel demo code, and the screenshot cannot be 
taken. The core code is as follows:

public function getAgeRangeReporting(GoogleAdsClient $googleAdsClient, 
$customer_id,?string $customer_name,$report_type=0)
{
if($report_type==1){
//get gender report
$sql = "SELECT gender_view.resource_name, segments.date, 
metrics.average_cost, metrics.average_cpc, metrics.active_view_cpm, 
metrics.conversions, metrics.conversions_value, metrics.clicks, 
metrics.ctr, metrics.impressions, ad_group_criterion.gender.type FROM 
gender_view WHERE segments.date = '{$this->date}'";
}else if($report_type==2){
//get geo report
$sql = "SELECT ad_group.id,geographic_view.resource_name, 
segments.geo_target_province, segments.geo_target_region, 
segments.geo_target_city, segments.geo_target_county, 
segments.geo_target_postal_code,segments.date, metrics.average_cost, 
metrics.average_cpc, metrics.conversions, metrics.conversions_value, 
metrics.clicks, metrics.ctr, metrics.impressions FROM geographic_view WHERE 
segments.date = '{$this->date}'";
}else{
//get age report
$sql =
'SELECT age_range_view.resource_name,'
. "segments.date,"
. "metrics.average_cost,"
. "metrics.average_cpc,"
. "metrics.active_view_cpm,"
. "metrics.conversions,"
. "metrics.conversions_value,"
. "metrics.ctr,"
. "metrics.impressions,"
. "metrics.clicks,ad_group_criterion.age_range.type "
. 'FROM age_range_view '
. "WHERE segments.date = '{$this->date}'";
}
// echo $sql."\r\n";
try {
$this->adsSql($googleAdsClient, $customer_id, $sql, function ($result) use 
($customer_id, $customer_name,$report_type) {
/** @var GoogleAdsServerStreamDecorator $result */
foreach ($result->iterateAllElements() as $googleAdsRow) {

/** @var GoogleAdsRow $googleAdsRow */

$age_range_view = 
$report_type==1?$googleAdsRow->getGenderView():$googleAdsRow->getAgeRangeView();
if($report_type==2){
$age_range_view =$googleAdsRow->getGeographicView();
}

$resource_name = $age_range_view->getResourceName();
$segments = $googleAdsRow->getSegments();
$metrics = $googleAdsRow->getMetrics();

$group_info = explode('/', $resource_name);
$group_data = explode('~', $group_info[3]);
if($report_type==2){
$group_id = $googleAdsRow->getAdGroup()->getId();
}else{
$group_id = $group_data[0];
}


$money = 0;
$average_cpc = round($metrics->getAverageCpc() / 100, 2);

if ($metrics->getClicks() > 0 && $average_cpc > 0) {
$money = round($average_cpc * $metrics->getClicks(), 2);
}

$conversions = $metrics->getConversions();
$clicks = $metrics->getClicks();

$conversions_ctr = 0;

if ($clicks > 0 && $conversions > 0) {
$conversions_ctr = round(($conversions / $clicks) * 100, 2);
}

$group_info = DB::connection('mysql_ads')->table('group')->where('group_id', 
$group_id)->first(['group_name', 'customer_name']);

$metrics_data = [
'group_id' => $group_id,
'group_name' => $group_info->group_name,
'customer_id' => $customer_id,
'customer_name' => $group_info->customer_name,
'criterion_id' => $group_data[1],
'average_cost' => round($metrics->getAverageCost() / 100, 2),
'average_cpc' => round($metrics->getAverageCpc() / 100, 2),
'active_view_cpm' => 
!empty($metrics->getActiveViewCpm())?round($metrics->getActiveViewCpm() 
/ 100, 2):0,
'conversions' => $conversions,
'conversions_value' => $metrics->getConversionsValue(),
'conversions_ctr' => $conversions_ctr,
'ctr' => round($metrics->getCtr() * 100, 2),
'clicks' => $metrics->getClicks(),
'impressions' => $metrics->getImpressions(),
'cost' => $money,
'historical_creative_quality_score' => 
$metrics->getHistoricalCreativeQualityScore(),
'historical_quality_score' => $metrics->getHistoricalQualityScore(),
'historical_landing_page_quality_score' => 
$metrics->getHistoricalLandingPageQualityScore(),
'historical_search_predicted_ctr' => 
$metrics->getHistoricalSearchPredictedCtr(),
'date' => $segments->getDate(),
'report_type' =>$report_type
];
if($report_type ==1){
$group_criterion = $googleAdsRow->getAdGroupCriterion();
//Google\Ads\GoogleAds\V8\Enums\GenderTypeEnum\GenderType
$gender = $group_criterion->getGender();
if($gender){
$gender_type = $gender->getType();
$metrics_data['gender_type'] = (int)$gender_type;
}
}else if($report_type == 2){
$city = $segments->getGeoTargetCity();
if($city){
$arr = explode('/',$city);
$metrics_data['city'] = $arr[count($arr)-1];
}
$province = $segments->getGeoTargetProvince();
if($province){
$arr = explode('/',$province);
$metrics_data['province'] = $arr[count($arr)-1];
}
}else{
$group_criterion = $googleAdsRow->getAdGroupCriterion();
//Google\Ads\GoogleAds\V8\Enums\AgeRangeTypeEnum\AgeRangeType
$age = $group_criterion->getAgeRange();
if($age){
$age_type = $age->getType();
$metrics_data['age_range_type'] = (int)$age_type;
}
}
DB::connection('mysql_ads')->table('group_age_rang')->updateOrInsert(
['group_id' => $group_id, 'criterion_id' => 
$group_data[1],'date'=>$this->date],
$metrics_data
);

}
});
} catch (\Exception $e) {
$error_data = json_decode($e->getMessage(), true);
echo $customer_id . '

RE: Getting criterion ID for one keyword

2021-11-15 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Hi Filip,

If you have enabled logging, the complete resource name (including the ID of 
the keyword) of your keyword that had just been created via the API should be 
returned in the response logs. Otherwise, you would need to use the 
change_event service to retrieve details of the most recent changes you 
performed in your account.

Best regards,

Reminder: Share your feedback about the Google Ads (AdWords) API! Take the 2021 
Google Ads API and AdWords API Annual Survey

Peter Laurence Napa Oliquino
Google Ads API Team
ref:_00D1U1174p._5004Q2R9C3r: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 
"AdWords API and Google Ads 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/5JeV20R2NBBG006lkcQelTS5GTPxQFrzdE1A%40sfdc.net.


RE: Ad Group Operating System Restriction

2021-11-15 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Hi Lonny,

Thank you for reaching out to our API support team.

Upon checking this guide, it is indeed not possible to target / exclude 
operating systems using the OperatingSystemVersionInfo at the ad group level. 
So that I may raise a feature request, could you share a more complete 
screenshot indicating that these settings are indeed available for an ad group?

If the screenshot would contain user / account information, you may then send 
the requested information via the Reply privately to author option. If this 
option is not available, you may send the details directly to our 
googleadsapi-supp...@google.com alias instead.

Best regards,

Reminder: Share your feedback about the Google Ads (AdWords) API! Take the 2021 
Google Ads API and AdWords API Annual Survey

Peter Laurence Napa Oliquino
Google Ads API Team
ref:_00D1U1174p._5004Q2R9D0s: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 
"AdWords API and Google Ads 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/hBybg0R2NFZZ00FTRoV00EQ8q_lYjO0lA06A%40sfdc.net.


RE: all account list

2021-11-15 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Hi Oleg,

Thank you for reaching out.

You can utilize the get account hierarchy feature to retrieve all your accounts 
under a specific MCC / manager account. Then, for reach client account 
returned, you may then generate the performance report you wish to to extract.

An example can be found in the Parallel Report Download documentation. However, 
this is currently not available for PHP. For the possibility of a similar 
implementation or workaround, I would recommend that you reach out to the PHP 
client library owners, via this link, for further guidance.

Best regards,

Reminder: Share your feedback about the Google Ads (AdWords) API! Take the 2021 
Google Ads API and AdWords API Annual Survey

Peter Laurence Napa Oliquino
Google Ads API Team
ref:_00D1U1174p._5004Q2R9EPZ: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 
"AdWords API and Google Ads 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/wheej0R2NIW300ZV31Vm98Q5KrzT6Empey9Q%40sfdc.net.


RE: how to get the geo data of google ads one day?

2021-11-15 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Hi Chaoming,

Thank you for providing further details to your concern.

I am afraid that our team would not be able to investigate the issue with 
current details. With this, please provide instead the following details as it 
will greatly help in our investigation:

complete request and response logs with request ID and request header generated 
on your end
Screenshot of the UI (translated in English) where you are comparing the API 
result


Please provide the requested information via the Reply privately to author 
option for privacy purposes. If this option is not available, you may send the 
details directly to our googleadsapi-supp...@google.com alias instead.

Regards,

Reminder: Share your feedback about the Google Ads (AdWords) API! Take the 2021 
Google Ads API and AdWords API Annual Survey

Ernie John Blanca Tacata
Google Ads API Team
ref:_00D1U1174p._5004Q2R92V3: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 
"AdWords API and Google Ads 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/FqrX-0R2NJEU00N2b8btqaSNCdUS8Rlj3SAw%40sfdc.net.


Re: how to get the geo data of google ads one day?

2021-11-15 Thread 'chaoming chen' via AdWords API and Google Ads API Forum

Another idea 

can you provide the results of customer ID: 2326004878 ran the follow SQL:

SELECT ad_group.id,geographic_view.resource_name, 
segments.geo_target_province, segments.geo_target_region, 
segments.geo_target_county, segments.geo_target_county, 
segments.geo_target_postal_code,segments.date, metrics.average_cost, 
metrics.average_cpc, metrics.conversions, metrics.conversions_value, 
metrics.conversions_value, metrics.clicks, metrics.ctr,metrics.impressions 
FROM geographic_view WHERE segments.date = '2021-11-14'

?
在2021年11月16日星期二 UTC+8 下午2:30:45 写道:

> Hi Chaoming,
>
> Thank you for providing further details to your concern.
>
> I am afraid that our team would not be able to investigate the issue with 
> current details. With this, please provide instead the following details as 
> it will greatly help in our investigation: 
>
>- complete request 
>
> 
> and response 
>
> 
>  logs 
>with request ID 
>
> 
> and request header 
>
> 
>  generated 
>on your end 
>- Screenshot of the UI (translated in English) where you are comparing 
>the API result 
>
>
> Please provide the requested information via the *Reply privately to 
> author* option for privacy purposes. If this option is not available, you 
> may send the details directly to our googleadsa...@google.com alias 
> instead.
>
>
> Regards,
>
> Reminder: Share your feedback about the Google Ads (AdWords) API! Take the 
> 2021 
> Google Ads API and AdWords API Annual Survey 
> 
>   
> [image: Google Logo] 
> Ernie John Blanca Tacata 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2R92V3: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 
"AdWords API and Google Ads 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/54b1add4-f931-4f2f-a241-522727e0b831n%40googlegroups.com.


How to set campaign goals as custome goals through google ads api

2021-11-15 Thread ping Lee
I can't get Custom goals

SELECT campaign_conversion_goal.resource_name, 
campaign_conversion_goal.category, customer.resource_name FROM 
campaign_conversion_goal


I can get Custom goals through custom_conversion_goal, but resource_name 
cannot be used to modify campaign goals


Please help me  thanks a lot!

[image: 2026150651.png]

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"AdWords API and Google Ads 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/e5dd753d-3bee-489d-9851-3ebbc3c101d2n%40googlegroups.com.