Re: How to change change bidding strategy from Manual CPC to Target ROAS via Adword API

2019-10-14 Thread Faizan Zulfiqar
hello

now I have more than 20 conversions in my campaign in 45 days.
When I am trying below code it is giving me error
here is my code
 $campaignService = $this->adWordsServices->get($this->session, 
CampaignService::class);
$campaign = new Campaign();   
$campaign->setId($dbCampaign->adword_campaign_id);
$biddingStrategyConfiguration = new BiddingStrategyConfiguration();
$biddingStrategyConfiguration->setBiddingStrategyType(
BiddingStrategyType::TARGET_ROAS
);
$targetRoasBiddingScheme = new TargetRoasBiddingScheme(
'Target Roas Scheme');
$targetRoasBiddingScheme->setTargetRoas((float)$dbCampaign->maargin
->roas_percentage * 100);
$biddingStrategyConfiguration->setBiddingScheme(
$targetRoasBiddingScheme);
$campaign->setBiddingStrategyConfiguration(
$biddingStrategyConfiguration);
// Create a campaign operation and add it to the list.

$operation = new CampaignOperation();
$operation->setOperand($campaign);
$operation->setOperator(Operator::SET);
$operations[] = $operation;

// Update the campaign on the server.
$result = $campaignService->mutate($operations);
logger(print_r($result->getValue()[0],true));
return $campaign = $result->getValue()[0];

below is my Request Soap XML


http://schemas.xmlsoap.org/soap/envelope/";
xmlns:ns1="https://adwords.google.com/api/adwords/cm/v201809";>



REDACTED
Ads Tool CLient (AwApi-PHP, googleads-php-lib/37.1.0, 
PHP/7.2.8, ReportDownloader/string)
false
false





SET

20*38

TARGET_ROAS

Target Roas Scheme








and below is my response soap xml

http://schemas.xmlsoap.org/soap/envelope/";>


soap:Client
Unmarshalling Error: cvc-type.2: The type definition cannot 
be abstract for element ns1:biddingScheme. 




Kindly advise what is going wrong

Thanks

On Wednesday, July 3, 2019 at 3:26:03 PM UTC+5, adsapiforumadvisor wrote:
>
> Hi Faizan,
>
> Yes, you still would not be able to apply the TargetRoasBiddingScheme to 
> your test account's campaigns. The examples I provided was for how you 
> would implement the requirements into your production accounts in the event 
> that you haven't done so yet.
>
> Thanks and regards,
> Peter
> Google Ads API Team
>
> ref:_00D1U1174p._5001UCaNvx: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/03360224-22d0-4e66-820f-9d70cf94d604%40googlegroups.com.


Java API custom report creation

2019-10-14 Thread Report It
I'm trying to replicate a Custom report (available from web console) using 
the Java API but I don't find an equivalent report type value from 
ReportDefinitionReportType class

Bye

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/281acc9c-ba04-4283-80d0-3d49e81cd33e%40googlegroups.com.


Re: Video campaigns not brought down using CampaignServiceInterface

2019-10-14 Thread Sriram V
Thanks Hiroyuki for getting back on this. Now it is clear.

Thanks,
Sriram

On Sunday, October 13, 2019 at 7:14:50 PM UTC-7, adsapiforumadvisor wrote:
>
> Hi Sriram,
>
> Unfortunately, there is currently no direct way to filter Video campaigns 
> in the Keywords Performance Report and Ad Performance Report.
>
> As a workaround, you may try:
>
>1. Get CampaignId 
>
> 
>  from 
>the Campaign Performance Report 
>
> 
>  by 
>filtering AdvertisingChannelType 
>
> 
>  = 
>VIDEO. 
>2. Generate Keywords Performance Report 
>
> 
>  by 
>filtering CampaignId 
>
> 
>  using 
>the Ids you got in the step 1. 
>3. Generate Ad Performance Report 
>
> 
>  by 
>filtering CampaignId 
>
> 
>  using 
>the Ids you got in the step 1. 
>
> Please let me know if you have further clarifications.
>
> Regards,
> Hiroyuki
> Google Ads API Team
>
>
> ref:_00D1U1174p._5001UKMwre: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/ffae9a9d-aa58-44e0-b7f6-d01c1b2bb0dd%40googlegroups.com.


RE: Java API custom report creation

2019-10-14 Thread Google Ads API Forum Advisor Prod
Hello,

Currently, it is possible to create the custom reports via Google Ads UI only. 
These report types are not available via API. Let us know if you need any 
additional information.

Regards,
Nikisha Patel, Google Ads API Team
ref:_00D1U1174p._5001UKNBn8: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/PTVds0PZDSVQ004czY4ZOPR169L5jRZd_7DA%40sfdc.net.


RE: targetingIdeaService results are not matching with Keyword Planner Tool

2019-10-14 Thread Google Ads API Forum Advisor Prod
Hi Venkat,

Thank you for reaching out. To assist you better with the discrepancy, could 
you please share the complete request and response logs for the API call made 
against the account to retrieve keyword planner data along with the client 
customer id for both Adwords and Google Ads API? Please use Reply privately to 
author option while sharing the details.

Regards,
Nikisha Patel, Google Ads API Team
ref:_00D1U1174p._5001UKN8f2: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/XRbr-0PZDTY600pcab3wqgSOSXPXTtAysQAQ%40sfdc.net.


is it possible configure if the adwords client to not use SSLContext?

2019-10-14 Thread andryushka x
Hi -- we have an airflow DAG and a task within that DAG uses googleads 
python library. It seems like this library uses SSLContext (
https://github.com/googleads/googleads-python-lib/blob/f070075a081cf2b32fd3d3b1b34b3e3770858c52/googleads/common.py#L440
)

This task needs to be pickled (serialized) and unfortunately SSLContext 
can't be pickled, specifically I am seeing TypeError: can't pickle 
SSLContext objects error.

we are creating the client like this:

oauth2_client = oauth2.GoogleRefreshTokenClient(
client_id=client_id,
client_secret=client_secret,
refresh_token=refresh_token,
)

self.client = adwords.AdWordsClient(
developer_token=developer_token,
oauth2_client=oauth2_client,
user_agent="adwords_client_hook",
client_customer_id=client_customer_id,
)

Is there someway to construct the client or something so that there are no 
SSLContext objects? 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 
"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/521261ec-e48a-4bd6-ac5f-734889d893ac%40googlegroups.com.


Re: Upload HTML5 via Ads API to an App Campaign

2019-10-14 Thread Renan Duarte Ribeiro dos Santos
Hi Sai,

Thank you again for your help.
Well, I have been talking with my dev team and they rose a question.
If we don't  use the ExitApi.exit() method then the entire area of my
playable is clickable, this means that if the user clicks once, for example
trying to play the playable ads, he/she is directed to the Play Store, what
is quite nonsense, right? I have a playables ads that cannot be played.

We tried to remove the ExitApi.exit() method and the Ads API worked
perfectly, so currently I have a working Ads API that uploads unuseful
playable ads.(LoL)

Do you know what should we do?
Is there another method that we should do instead?




On Mon, Oct 7, 2019 at 5:57 PM Google Ads API Forum Advisor Prod <
adsapiforumadvi...@gmail.com> wrote:

> Hello Renan,
>
> Looks like the error is related to this post
> . The error
> means that the JavaScript embedded in the HTML you're uploading contains
> modified clickability. Specifically, somewhere in the code there is a call
> to ExitApi.exit(). The above post might give you some resources in how to
> fix the HTML and get it uploaded. In general it is possible to upload
> HTML5s via APP campaigns.
>
> Regards,
> Sai Teja, Google Ads API Team
>
> ref:_00D1U1174p._5001UKMK1u:ref



-- 




Renan Duarte

User Acquisition

11 97433 0388

São Paulo | Brasil

wildlifestudios.com

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/CAHHK5OHeFMxB3EVgqZoUJ71V%3D5%3DZ-n4%3Di9KRFf-_fFYBBVijxw%40mail.gmail.com.


Re: Documentation offline?

2019-10-14 Thread Kristian Sentić
Hello, I can't open Google Ads API docs too, on this link: 
https://developers.google.com/google-ads/api/docs/start

I don't have any proxy, and can't open any page in docs. Can there be any 
other problem except proxy?

Thanks, Kristian Sentic

On Monday, October 7, 2019 at 7:41:45 PM UTC+2, adsapiforumadvisor wrote:
>
> Hello Manuel,
>
> I am able to open the documentation, it might be a temporary glitch. 
> Please let me know if you are still facing the error. In case you are using 
> any proxy servers to access the documentation, please deactivate the proxy 
> and try again.
>
> Regards,
> Sai Teja, Google Ads API Team
>
>  
>
> ref:_00D1U1174p._5001UKMM4y: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/1dff9977-9430-48f1-badf-6b3d1bbe2807%40googlegroups.com.


[Google Ads Query Language] Get every day of last month in one call ?

2019-10-14 Thread Jason.B
Hi,

I use the google ads api beta, try to take last month cost_micros for all 
my campaigns group by day, but, after testing and reading documentation, I 
still didn't find a solution to take every day of the last month like :

(month/day)
01/01 : cost_micros => 5
01/02 : cost_micros => 4
01/03 : cost_micros => 0
01/04 : cost_micros => 100
01/05 : cost_micros => 5
...

Actually I make a while with a request like (php) : 

SELECT
campaign.id,
campaign.name,
metrics.cost_micros
FROM campaign
WHERE campaign.status = "ENABLED" AND segments.date = "' . 
$startDate->format('Y-m-d') . '"';


Is exists a "one call" option to do this ? To avoid while and lot of call...

Thank you for your time

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/6a46d76e-a56a-48cd-bc5a-2d7ad4ba9802%40googlegroups.com.


Get change history via Ads API

2019-10-14 Thread Renan Duarte Ribeiro dos Santos
Hi all,

Does anybody know if there is a way to get the change history of my 
campaigns via Ads API ?


Kind Regards

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/3a5d9acb-ba06-4016-b382-2ff994c59917%40googlegroups.com.


Re: Adwords Api Errors: OperationAccessDenied.MUTATE_ACTION_NOT_PERMITTED_FOR_CLIENT

2019-10-14 Thread Alex
Hi Peter,

We need to pause a specific ad in an ad group. Pausing an ad group will not 
solve the issue.

If account has automatically generated ad and not visible in Google Ads UI 
and still showing to visitors and occurs cost for account.
Can you provide some more details on this ?
 
Thanks
Alex

On Monday, October 14, 2019 at 8:04:33 AM UTC+5:30, adsapiforumadvisor 
wrote:
>
> Hi Abhinesh,
>
> My apologies for the delay.
>
> Upon checking with the rest of our team, it appears that you are 
> encountering this error because you are trying to pause an automatically 
> generated ad. This is the reason why you are also not able to view it in 
> the Google Ads UI.
>
> Could you confirm if what you intend is to really pause the specific ad? 
> Could you also try pausing the ad group instead as a workaround? Let me 
> know if pausing the ad group resolves your issue.
>
> Thanks and regards,
> Peter
> Google Ads API Team
>
> ref:_00D1U1174p._5001UHGlGT: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/2f14caf7-bcda-4db6-8929-68962ae6917f%40googlegroups.com.


hierarchy of customers and client

2019-10-14 Thread Dmitriy Lezhnev
Hey! I am a bit confused with the terminology of new google ads API.
Can you give me a couple of hints?

1. we have customers and clients. What is the difference?
2. resource names notation like `customers/X/campsign/Y` implies we manage 
resources belonging to customer, so why we need clietns in this case?
API docs website does not help much.

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/e29f5a9a-27a8-42ec-bea5-581ced85b9ab%40googlegroups.com.


Re: How to change change bidding strategy from Manual CPC to Target ROAS via Adword API

2019-10-14 Thread Google Ads API Forum Advisor Prod
Hi Faizan,

Could you try and update your code as seen below :

$targetRoasBiddingScheme = new TargetRoasBiddingScheme('Target Roas Scheme');  
-->  $targetRoasBiddingScheme = new TargetRoasBiddingScheme();

Let me know if this helps resolve the Unmarshalling Error that you are 
encountering.

Thanks and regards,
Peter
Google Ads API Team
ref:_00D1U1174p._5001UCaNvx: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/x7RC-0PZEADA00mcNrAAWySYe6NxIJa8wNUA%40sfdc.net.


RE: is it possible configure if the adwords client to not use SSLContext?

2019-10-14 Thread Google Ads API Forum Advisor Prod
Hi,

Thank you for posting your concern.

However, it appears that your concern is client library related. With this, I 
would suggest that you reach out to the owner of the Python client library via 
this link.

Regards,
Hiroyuki
Google Ads API Team
ref:_00D1U1174p._5001UKNHQ9: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/65RnT0PZED7J00UIv4d25eSKe9eW_PLbEWTA%40sfdc.net.