Re: Could not apply AdNetworkType2 segment to Keyword Performence Report

2018-02-19 Thread Ketaki

>
> Hi Dhanya,
>

 I tried with maximizing my browser window but still couldn't find Network 
(with search partners) segment in the dropdown.

Below are the steps i followed to get Keyword Report for an account. 

   - After login, i go to Campaigns tab. 
   - In Campaigns Report, I click on the particular account for which i 
   want to view report.
   - After clicking on the account name, it showed all campaigns within 
   that account; along with the left bar having different options like - 
   Campaigns, Ad Groups, Ads and Extensions, Landing pages, Keywords, 
   Audiences etc.
   - I clicked on Keywords tab to view keyword report for this account.
   - Within this report, i am trying to download report with applying 
   multiple segments, where i couldn't find Network(with search partners)


Can you please confirm, these steps are correct to get the Keyword 
Performance report?


Regards,
Ketaki.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/14ff690c-3eb9-4909-9661-f1725115abf3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Bid Adustments On Top Level Domain And SubDomain

2018-02-19 Thread Garik Tate
Hey guys, if you make a bid adjustment on a domain say "forbes.com", of 
+10%, and then make a bid adjustment on a specific page of that domain say 
"forbes.com/some-random-page" of +15%.

Will those two bid adjustments play with each other? In other words will my 
bid adjustment on
"forbes.com/some-random-page" be +15% or +25% or +26.5%?

This relates to the core functionality of how our app changes bid 
adjustments, but I can't find the answer anywhere.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/a49c1dd5-cd96-4b44-a714-2298026e96c1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


How to adjusting bid on an existing ad schedule? its says its already existed.

2018-02-19 Thread Ken Dan Tinio
this is my code for adjust bid in ad schedule.
// Create a mobile platform. The ID can be found in the documentation.
// https://developers.google.com/adwords/api/docs/appendix/platforms
$adsched = new AdSchedule();
$adsched->setDayOfWeek(strtoupper($day_of_the_week));
$adsched->setStartHour($start_hour);
$adsched->setStartMinute(strtoupper($string_start_min));
$adsched->setEndHour($end_hour);
$adsched->setEndMinute(strtoupper($string_end_min));

// Create a criterion with modified bid.
$criterion = new CampaignCriterion();
$criterion->setCampaignId($campaign_id);
$criterion->setCriterion($adsched);
$criterion->setBidModifier($bid_modifier);

// Create a campaign criterion operation and add it to the operations 
list.
$operation = new CampaignCriterionOperation();
$operation->setOperator(Operator::ADD);
$operation->setOperand($criterion);
$operations = [$operation];

and this is my error

 [CampaignCriterionError.CANNOT_ADD_EXISTING_FIELD @ 
operations[0].operand.bidModifier]

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/ecbaee91-a02d-4ee3-814e-31d2ea83cb2a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Rate Exceed Error for TargetIdeas service

2018-02-19 Thread cv
Hello Vincent,

Yes, I got you. I have also read same on this group other questions as 
well, but as mentioned over here 
https://developers.google.com/adwords/api/docs/guides/rate-limits 
 the ACCOUNT scope 
will be depend on the No of request per account, also Milind said same. In 
my case I am not using same account for multiple requests.

I am doing for first Request of the day, and getting RateExceedLimit error?
You can clearly see that I have made first request on the day today and got 
the rateExceedLimit error.I also tried the request in after few minutes, 
but same error.

Also you mentioned that *The rate limits for this service does not depend 
on your account's QPS alone, but the rate limits can vary based on time of 
the day, overall volume of API usage by all users.*
So what is the meaning of overall volume of API Usage? Is this all the 
changes I made using API across all the accounts for same Developer Token 
for different services as well?

I am little confusing, as I am getting this error randomly and frequently 
sometimes on first request itself and sometimes after retry for few times 
then also.

How I can overcome same? Can you guide me?

Thanks,





On Tuesday, 20 February 2018 11:45:51 UTC+5:30, Vincent Racaza (AdWords API 
Team) wrote:
>
> Hi,
>
> I am a teammate of Milind and I will be providing support.
>
> For the TargetingIdeaService 
> ,
>  
> you may sometimes receive RateExceededError with rateScope=ACCOUNT as this 
> service is more expensive compared to other AdWords API services. The rate 
> limits for this service does not depend on your account's QPS alone, but 
> the rate limits can vary based on time of the day, overall volume of API 
> usage by all users, and other factors. So in regards to your question 
> regarding if targeting USA or the cities on it with INR currency in your 
> account can cause the RateExceededError, the answer is no. 
>
> This said, the only way to minimize this issue is to slow down 
>  
> and 
> retry your request based on the number of seconds specified in the 
> retryAfterSeconds field of your response.
>
> Thanks,
> Vincent
> AdWords API Team
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/0d476998-28a4-4f18-af35-93c44fe7673d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Add User List Campaig-Level With set "Bid only"

2018-02-19 Thread 'Luis Xander Talag (AdWords API Team)' via AdWords API Forum
Hi Gerardo,

In order to change the targeting setting of your userlist to "Bid only", 
you will need to set the targetAll 

 field 
of the TargetingSettingDetail 

 to *TRUE*. You may also refer to this guide 

 for 
sample code. Although the sample is for AdGroup, that is also identical in 
setting up for the Campaign. However, the value "Observation" is not 
supported in the API. Let me know if you have further clarification.

Thanks and regards,
Luis
AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/3b79883f-bf1f-4d41-b16b-1a5a98bae807%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Rate Exceed Error for TargetIdeas service

2018-02-19 Thread 'Vincent Racaza (AdWords API Team)' via AdWords API Forum
Hi,

I am a teammate of Milind and I will be providing support.

For the TargetingIdeaService 
,
 
you may sometimes receive RateExceededError with rateScope=ACCOUNT as this 
service is more expensive compared to other AdWords API services. The rate 
limits for this service does not depend on your account's QPS alone, but 
the rate limits can vary based on time of the day, overall volume of API 
usage by all users, and other factors. So in regards to your question 
regarding if targeting USA or the cities on it with INR currency in your 
account can cause the RateExceededError, the answer is no. 

This said, the only way to minimize this issue is to slow down 
 
and 
retry your request based on the number of seconds specified in the 
retryAfterSeconds field of your response.

Thanks,
Vincent
AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/fd0651da-e306-43ed-9613-627651f0ed9b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: is there a way to bid adjust on time or date?

2018-02-19 Thread Ken Dan Tinio
Thank you so much for providing me this answer. I have just figure it all 
out as well. We have the same code. Thank you! thank you!

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/68dd8ec5-f425-45d2-aaf9-bd8d71e5ace3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: is there a way to bid adjust on time or date?

2018-02-19 Thread 'Vincent Racaza (AdWords API Team)' via AdWords API Forum
Hi Ken,

Since your main goal is to add an AdSchedule, then you need to use the ADD 
operator in your mutate() 

 method 
as well as setting the criterion as AdSchedule instead of Platform. Also, 
you cannot set the startHour's 

 value 
as 24 as this will generate an error since the field accepts 0 -23 values. 
Below 
is the code snippet that works on my end that you can use as reference:

$adsched = new AdSchedule();
$adsched->setDayOfWeek(DayOfWeek::MONDAY);
*$adsched**->setStartHour(14);*
$adsched->setStartMinute(MinuteOfHour::ZERO);
$adsched->setEndHour(24);
$adsched->setEndMinute(MinuteOfHour::ZERO);

// Create a criterion with modified bid.
$criterion = new CampaignCriterion();
$criterion->setCampaignId($campaignId);
*$criterion**->setCriterion($adsched);*
$criterion->setBidModifier($bidModifier);

// Create a campaign criterion operation and add it to the operations list.
$operation = new CampaignCriterionOperation();
*$operation**->setOperator(Operator::ADD);*
$operation->setOperand($criterion);
$operations = [$operation];

Try this on your end and let me know if this works.

Thanks,
Vincent
AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/1709e2d0-8e85-4425-8149-81921b24a018%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Rate Exceed Error for TargetIdeas service

2018-02-19 Thread cv
Hi Milind,

I also facing same issue with TargetingIdeaService only and I am using 
exactly same account for clients to whom I have permission of the account.
I am also not using One Account for frequently request as you mentioned in 
the summary. I am using it for 3-4 times a day with getting idea of around 
10 Keywords per request.

Still I faced the Issue with Rate Limit on Account Level. This is frequent 
now then It was working before.

Is that any criteria If I wants to target USA states or City and using 
account with INR currency can cause an issue?

[Feb 13 2018 18:30:15.00 - ERROR] 
effectiveUser= XUSER service=TargetingIdeaService method=get operators={} 
responseTime=46 requestId=00056517930375e00abf6708970d190c operations=1 
units= server=adwords.google.com isFault=true 
faultMessage=[RateExceededError ]
[Feb 15 2018 02:15:08.00 - ERROR] 
effectiveUser= XUSER service=TargetingIdeaService method=get operators={} 
responseTime=171 requestId=000565322fd007700aa30c415f0dad71 operations=1 
units= server=adwords.google.com isFault=true 
faultMessage=[RateExceededError ]
[Feb 15 2018 09:45:09.00 - ERROR] 
effectiveUser= XUSER service=TargetingIdeaService method=get operators={} 
responseTime=183 requestId=00056538792856b00abfe1cc6705717e operations=1 
units= server=adwords.google.com isFault=true 
faultMessage=[RateExceededError ]
[Feb 16 2018 00:45:10.00 - ERROR] 
effectiveUser= XUSER service=TargetingIdeaService method=get operators={} 
responseTime=199 requestId=000565450bd061e00abf47168c00f8a3 operations=1 
units= server=adwords.google.com isFault=true 
faultMessage=[RateExceededError ]
[Feb 19 2018 20:45:16.00 - ERROR] 
effectiveUser= XUSER service=TargetingIdeaService method=get operators={} 
responseTime=153 requestId=0005659228d72bf00abf86ce46076187 operations=1 
units= server=adwords.google.com isFault=true 
faultMessage=[RateExceededError ]
[Feb 20 2018 08:00:17.00 - ERROR] effectiveUser=XUSER 
service=TargetingIdeaService method=get operators={} responseTime=172 
requestId=0005659b96d50b500aa36b0a9b0f8904 operations=1 units= 
server=adwords.google.com isFault=true faultMessage=[RateExceededError 
]



Thanks,


On Friday, 26 January 2018 02:01:52 UTC+5:30, Milind Sankeshware (AdWords 
API Team) wrote:
>
> Hi, 
>
> The discussion on this issue happened offline. For the benefit of other 
> users on the forum, please find the summary of the discussion below:
>
> Rate limits with ACCOUNT scope occurs usually when there are too many 
> requests against the account in a short duration of time. In that case you 
> may need to slow down and make fewer requests against that account. You 
> will need to wait for at least the seconds specified in retryAfterSeconds 
> 
>  in 
> the error log before you retry. You can refer to this guide 
> 
>  to 
> control the rate limit errors in your application. Making fewer requests 
> that fetch more data is recommended compared to many requests for the same 
> amount of data.
>
> Thanks,
> Milind, AdWords API Team.
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/7fac2768-bcb4-4294-a659-9a83c0a64e9e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: is there a way to bid adjust on time or date?

2018-02-19 Thread Ken Dan Tinio
So far I have this..



class SetBidModifier {

  const CAMPAIGN_ID = '1010615735';
  // Bid modifiers are float number, not percentages, e.g., 1.5 means 50% 
more
  // bidding.
  const BID_MODIFIER = '1.5';

  public static function runExample(AdWordsServices $adWordsServices, 
AdWordsSession $session, $campaignId, $bidModifier) 
  {
$campaignCriterionService = $adWordsServices->get($session, 
CampaignCriterionService::class);

// Create a mobile platform. The ID can be found in the documentation.
// https://developers.google.com/adwords/api/docs/appendix/platforms
$mobile = new Platform();
$mobile->setId(30001); // HighEndMobile = 30001

$adsched = new AdSchedule();
$adsched->setDayOfWeek(DayOfWeek::MONDAY);
$adsched->setStartHour(24);
$adsched->setStartMinute(MinuteOfHour::ZERO);
$adsched->setEndHour(24);
$adsched->setEndMinute(MinuteOfHour::ZERO);


// Create a criterion with modified bid.
$criterion = new CampaignCriterion();
$criterion->setCampaignId($campaignId);
$criterion->setCriterion($mobile);
$criterion->setBidModifier($bidModifier);

// Create a campaign criterion operation and add it to the operations 
list.
$operation = new CampaignCriterionOperation();
$operation->setOperator(Operator::SET);
$operation->setOperand($criterion);
$operations = [$operation];

// Update campaign criteria on the server.
$results = $campaignCriterionService->mutate($operations);

// Print out some information about the updated campaign criterion.
foreach ($results->getValue() as $campaignCriterion) {
  printf(
  "Campaign criterion with campaign ID %d, criterion ID %d, "
  . "and type '%s' was modified with bid %.2f.\n",
  $campaignCriterion->getCampaignId(),
  $campaignCriterion->getCriterion()->getId(),
  $campaignCriterion->getCriterion()->getType(),
  $campaignCriterion->getBidModifier());
}
  }

  public static function main() 
  {
// Generate a refreshable OAuth2 credential for authentication.
$oAuth2Credential = (new OAuth2TokenBuilder())
->fromFile()
->build();

// Construct an API session configured from a properties file and the 
OAuth2
// credentials above.
$session = (new AdWordsSessionBuilder())
->fromFile()
->withOAuth2Credential($oAuth2Credential)
->build();
self::runExample(new AdWordsServices(), $session, 
intval(self::CAMPAIGN_ID), floatval(self::BID_MODIFIER));
  }
}


I just don't know how to pass the ad schedule to mutate.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/4e9b3104-fbc2-4a55-b19b-1d3802f70565%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Google\AdsApi\Common\OAuth2TokenBuilder

2018-02-19 Thread 'Vincent Racaza (AdWords API Team)' via AdWords API Forum
Hi,

Normally, for PHP client library, if the error being generated states that 
it cannot find a certain class, then it means that the dependencies are not 
fully installed/downloaded. I have also encountered this issue before for 
the OAuth2TokenBuilder when I installed the latest PHP client library 
locally. What I did to resolve the issue was to install again the client 
library using composer as you can see on this guide 
 just 
to make sure that all dependencies are downloaded.

On your end, if you haven't, can you try to install the client library again 
based 
on that guide and let me know if the issue still persists?

Thanks,
Vincent
AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/47c610b1-a470-45a3-9406-d7e3985bd18c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Add User List Campaig-Level With set "Bid only"

2018-02-19 Thread gerardo
Hi,

I'm working in add User List Criterion to a Campaign, but i need that the 
user lists added are setting as "Bid only" or "Observation" in the new UI. 

"Bid only" is default in UI but when add for the API not.

*This option is configurable at Campaign-level in API?*. I know you can do 
it at AdGroup-level.

thanks, greetings.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/c4dda167-ffa9-4d95-932b-2e9b72847741%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Google\AdsApi\Common\OAuth2TokenBuilder

2018-02-19 Thread blair
I've seen this question asked a few times and followed what was being said 
but had no luck.

- I successfully installed via composer and have verified that the 
src/Google/AdsApi/Common folder is there and it does contain 
OAuth2TokenBuilder.php.  I suspect that my path is wrong but it does load 
vendor/autoload.php. It even returns a long array in return $loader from 
autoload_real.php. But for some reason it can't find that Class for the 
Token Builder. attached is a screenshot of my file structure.  Anyone have 
any suggestions?


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/dbef90fc-5abb-4868-855c-24b6598f16fb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: AdGroupCriterionError.CONCRETE_TYPE_REQUIRED @ operations[0].operand

2018-02-19 Thread 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API Forum
Hi, 

>From the SOAP logs, it looks like the namespace for 
BiddableAdGroupCriterion is missing in your request resulting in the 
CONCRETE_TYPE_REQUIRED 

 error. 
I see that you were looking up the sample in PHP 

 for 
reference. Could you also confirm if you are using the PHP client library 
or just using them as reference? Below is the snippet of a successful 
request to ADD a keyword. I see that your trace of the request has the bid 
and the finalUrl but that is missing in the SOAP request. Could you share 
your code snippet used to add the keywords?


ADD
   * https://adwords.google.com/api/adwords/cm/v201710"; 
xsi:type="ns2:BiddableAdGroupCriterion">*
*

mars cruise
BROAD




1000





http://example.com/mars/cruise/?kw=mars+cruise




Thanks,
Sreelakshmi, AdWords API Team.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/7e54683e-22ab-4ee9-b10f-6c0face8d0d0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Fatal error: Call to undefined function Google\AdsApi\AdWords\boolval()

2018-02-19 Thread 'Dhanya Sundararaju (AdWords API Team)' via AdWords API Forum
Hi Alan,

The examples in the adwords php library are meant to be run from the 
command line and not as a webpage. If you run them as a webpage, results 
may not be shown properly. Please refer this 
 
guide 
for better clarity.

Regards,
Dhanya, AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/0e199f5d-c46d-472d-a971-e04c50e40dbd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Editing User List members

2018-02-19 Thread 'Bharani Cherukuri (AdWords API Team)' via AdWords API Forum
Hello, 

It takes 6 to 12 hours for the list to be populated with members and the 
email addresses uploaded must be associated with a Google account. You may 
refer to this guide 

 for 
uploading the user list with email addresses. If you continue to have an 
issue with this, please provide us the complete SOAP request and response 
logs for the MUTATE and REMOVE operations, so I can take a look. Please use 
*Reply 
privately to author* to share the details.

Regards,
Bharani, AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/245ccde5-06e6-4ba2-958c-4b49a484b51c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: ConversionTrackerService doesn't respect select fields

2018-02-19 Thread 'Bharani Cherukuri (AdWords API Team)' via AdWords API Forum
Hello, 

Thank you for sharing the logs. There are certain fields in the API request 
that will be returned even when not in the selector request. The snippet 

 is 
auto-generated by the API, and will be ignored in mutate operands. This 
field will always be returned for conversion trackers that use snippets. If 
the other fields are not selected, the snippet will use default values for 
them. The mostRecentConversionDate will return the date of the most recent 
ad click that led to a conversion for this conversion type. 

Hope this addresses your concern. Let me know if you have any other 
questions. 

Regards,
Bharani, AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/51b24d44-158d-448d-baa0-eb1c2be6e259%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Error API First Call

2018-02-19 Thread 'Dhanya Sundararaju (AdWords API Team)' via AdWords API Forum
Hi,

I was able to pull up your account 737-186-2754. Looks like it is not a 
test account. You also would need a test manager account to use the API 
until your Production Developer Token is approved. Please refer this 

 guide 
for steps on how to create test accounts. Also, could you let me know the 
MCC id of the Developer token used in your googleads.yaml file? Please let 
me know if you have further questions.

Regards,
Dhanya, AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/8b5570fa-e97e-4e59-92a4-c8c461bb9b65%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Fatal error: Call to undefined function Google\AdsApi\AdWords\boolval()

2018-02-19 Thread Alan Coleman
Hello everyone,

I've put together a simple PHP test script based on the GetCampaigns.php 

 
example.

It returns data in my local development environment and also on my live 
server when being run via *shell*.


   - Local PHP Version: 5.6.24
   - Live PHP Version: 5.6.32


However when I run the script through a browser on my live server I get the 
following error:

*Fatal error*: Call to undefined function Google\AdsApi\AdWords\boolval() 
in 
*/home2/adwordsl/public_html/app/vendor/googleads/googleads-php-lib/src/Google/AdsApi/AdWords/AdWordsSessionBuilder.php*
 on 
line *134*


*Has anyone else come across this?*

Any help would be greatly appreciated.

Thanks

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/5a78b604-1862-4ac1-9de7-42b2b7ffb5a4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Adwords API Video campaigns

2018-02-19 Thread 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API Forum
Hi, 

Video campaigns are still not supported in the AdWords API except in the 
reports. We don't have any updates at the moment. If you haven't already, 
you could follow our blogs 
 for 
updates and announcements about the future releases. 

Thanks,
Sreelakshmi, AdWords API Team.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/046610eb-025e-46f5-b138-e91081930e2c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Error API First Call

2018-02-19 Thread santiagoruffino
Hello! I just created all the credentials again, and reconfigured all the 
API files again, to avoid any inconvenience.
I just came across another problem, which tells me that the developer token 
was not approved.
However, it is a test account, and I read that the developer token does not 
need to be validated in a DEMO account.
What can be the way to test my API without having to wait for the 
application to be approved?
Thank you.

C:\Users\Lucia\AppData\Local\Programs\Python\Python36-32\python.exe 
C:/Users/Lucia/adwords_python3_examples_10.0.0/v201710/basic_operations/get_campaigns.py
WARNING:googleads.common:Your default encoding, cp1252, is not UTF-8. 
Please run this script with UTF-8 encoding to avoid errors.
DEBUG:suds.transport.http:opening 
(https://adwords.google.com/api/adwords/cm/v201710/CampaignService?wsdl)
INFO:oauth2client.client:Refreshing access_token
INFO:googleads.common:Request summary - {'methodName': get, 
'clientCustomerId': 737-186-2754}
DEBUG:suds.transport.http:sending:
URL: https://adwords.google.com/api/adwords/cm/v201710/CampaignService
HEADERS: {'Content-Type': 'text/xml; charset=utf-8', 'SOAPAction': b'""', 
'Authorization': 'REDACTED', 'Content-type': 'text/xml; charset=utf-8', 
'Soapaction': b'""'}
MESSAGE:
http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xmlns:tns="https://adwords.google.com/api/adwords/cm/v201710"; 
xmlns:ns0="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="https://adwords.google.com/api/adwords/cm/v201710";>737-186-2754REDACTEDunknown
 
(AwApi-Python, googleads/9.0.0, 
Python/3.6.2)falsefalseIdNameStatus0100
INFO:googleads.common:Response summary - {'requestId': 
0005658febd10ca10a37ab13ce01ab0c, 'responseTime': 167, 'serviceName': 
CampaignService, 'methodName': get, 'operations': 1, 'isFault': True, 
'faultMessage': "[QuotaCheckError.DEVELOPER_TOKEN_NOT_APPROVED @ ; 
trigger:'']"}
ERROR:suds.client:
WARNING:googleads.common:Response summary - {'requestId': 
0005658febd10ca10a37ab13ce01ab0c, 'responseTime': 167, 'serviceName': 
CampaignService, 'methodName': get, 'operations': 1, 'isFault': True, 
'faultMessage': "[QuotaCheckError.DEVELOPER_TOKEN_NOT_APPROVED @ ; 
trigger:'']"}
INFO:googleads.common:SOAP response:

http://schemas.xmlsoap.org/soap/envelope/";>
   
  https://adwords.google.com/api/adwords/cm/v201710";>
 0005658febd10ca10a37ab13ce01ab0c
 CampaignService
 get
 1
 167
  
   
   
  
 soap:Client
 [QuotaCheckError.DEVELOPER_TOKEN_NOT_APPROVED @ ; 
trigger:'']
 
https://adwords.google.com/api/adwords/cm/v201710";>
   [QuotaCheckError.DEVELOPER_TOKEN_NOT_APPROVED @ ; 
trigger:'']
  
 ApiException
   http://www.w3.org/2001/XMLSchema-instance"; 
xsi:type="QuotaCheckError">
  
  
  
QuotaCheckError.DEVELOPER_TOKEN_NOT_APPROVED
  QuotaCheckError
  DEVELOPER_TOKEN_NOT_APPROVED
   

 
  
   

Traceback (most recent call last):
  File 
"C:\Users\Lucia\AppData\Local\Programs\Python\Python36-32\lib\site-packages\googleads\util.py",
 
line 123, in PatchedHttpTransportSend
fp = self.u2open(u2request)
  File 
"C:\Users\Lucia\AppData\Local\Programs\Python\Python36-32\lib\site-packages\suds\transport\http.py",
 
line 132, in u2open
return url.open(u2request, timeout=tm)
  File 
"C:\Users\Lucia\AppData\Local\Programs\Python\Python36-32\lib\urllib\request.py",
 
line 532, in open
response = meth(req, response)
  File 
"C:\Users\Lucia\AppData\Local\Programs\Python\Python36-32\lib\urllib\request.py",
 
line 642, in http_response
'http', request, response, code, msg, hdrs)
  File 
"C:\Users\Lucia\AppData\Local\Programs\Python\Python36-32\lib\urllib\request.py",
 
line 570, in error
return self._call_chain(*args)
  File 
"C:\Users\Lucia\AppData\Local\Programs\Python\Python36-32\lib\urllib\request.py",
 
line 504, in _call_chain
result = func(*args)
  File 
"C:\Users\Lucia\AppData\Local\Programs\Python\Python36-32\lib\urllib\request.py",
 
line 650, in http_error_default
raise HTTPError(req.full_url, code, msg, hdrs, fp)
urllib.error.HTTPError: HTTP Error 500: Internal Server Error

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File 
"C:\Users\Lucia\AppData\Local\Programs\Python\Python36-32\lib\site-packages\suds\client.py",
 
line 613, in send
reply = self.options.transport.send(request)
  File 
"C:\Users\Lucia\AppData\Local\Programs\Python\Python36-32\lib\site-packages\googleads\util.py",
 
line 134, in PatchedHttpTransportSend
raise suds.transport.TransportError(e.msg, e.code, e.fp)
suds.transport.TransportError: Internal Server Error

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File 
"C:/Use

Re: Error API First Call

2018-02-19 Thread santiagoruffino
Hello! I just created all the credentials again, and reconfigured all the 
API files again, to avoid any inconvenience.
I just came across another problem, which tells me that the developer token 
was not approved.
However, it is a test account, and I read that the developer token does not 
need to be validated in a DEMO account.
What can be the way to test my API without having to wait for the 
application to be approved?
Thank you.

El viernes, 16 de febrero de 2018, 19:15:23 (UTC-3), Dhanya Sundararaju 
(AdWords API Team) escribió:
>
> Hi,
>
> Could you confirm that the client_id field in your googleads.yaml is the 
> same as the one in your project within Google API Console Credentials page 
> ? Please refer 
> this 
> 
>  guide 
> for better clarity and let me know if you have further questions.
>
> Regards,
> Dhanya, AdWords API Team
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/b50bd138-de15-4169-8b91-4209c879c2f3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Editing User List members

2018-02-19 Thread Keren
Please ignore the weird spaces :)

On Monday, 19 February 2018 11:28:36 UTC+2, Keren wrote:
>
>
> Hi,
> We implemented user list add and edit operations in our application.
> We are trying to test our code and facing unexpected behavior in AdWords 
> UI.  We are not sure if our code works as expected.
>
> Our test account id is 4167529180.
>
 

> We created a new user list and added 18 members (emails only) to the user 
> list  (user list id: 545387847) using MutateMembersOperation, ADD operator.
> After 24 hours the size of the user list (Gmail, Search Network) was 
> displayed in UI as 4.
> Then we deleted all emails using this operation:
>
> MutateMembersOperation mutateMembersOperation = new 
> MutateMembersOperation();
> MutateMembersOperand operand = new MutateMembersOperand();
> operand.setUserListId(userListId);
> operand.setRemoveAll(true);
> mutateMembersOperation.setOperand(operand);
> mutateMembersOperation.setOperator(Operator.REMOVE);
>
> Then we uploaded 3 new emails, we are now expecting the size to be between 
> 0 and 3, but the size of the user list still appears as 4 after a few days.
> Can you please check why it still appears as 4? 
>
> Thanks
>
>
> This e-mail, as well as any attached document, may contain material which 
> is confidential and privileged and may include trademark, copyright and 
> other intellectual property rights that are proprietary to Kenshoo Ltd, 
>  its subsidiaries or affiliates ("Kenshoo"). This e-mail and its 
> attachments may be read, copied and used only by the addressee for the 
> purpose(s) for which it was disclosed herein. If you have received it in 
> error, please destroy the message and any attachment, and contact us 
> immediately. If you are not the intended recipient, be aware that any 
> review, reliance, disclosure, copying, distribution or use of the contents 
> of this message without Kenshoo's express permission is strictly prohibited.


-- 
This e-mail, as well as any attached document, may contain material which 
is confidential and privileged and may include trademark, copyright and 
other intellectual property rights that are proprietary to Kenshoo Ltd, 
 its subsidiaries or affiliates ("Kenshoo"). This e-mail and its 
attachments may be read, copied and used only by the addressee for the 
purpose(s) for which it was disclosed herein. If you have received it in 
error, please destroy the message and any attachment, and contact us 
immediately. If you are not the intended recipient, be aware that any 
review, reliance, disclosure, copying, distribution or use of the contents 
of this message without Kenshoo's express permission is strictly prohibited.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/ee4fd366--4bf1-92ae-c77a099b65bf%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: is there a way to bid adjust on time or date?

2018-02-19 Thread Ken Dan Tinio
Thank you very much Vincent, I think this is the one that I'm looking for.

we can set startHour, startMinute, dayOfWeek, endHour and endMinute.

Ive check the example, I don't know which one to replace. I know I will be 
asking too much but, I don't really know how to use it. Can you please 
provide me an example. Please...

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/6df89fb2-2b12-4971-9dbf-5b295c3a7865%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: is there a way to bid adjust on time or date?

2018-02-19 Thread 'Vincent Racaza (AdWords API Team)' via AdWords API Forum
Hi Ken,

Yes, AdSchedule 

 is 
available in the AdWords API in the campaign level only particularly in the 
CampaignCriterion 

 object. 
However, ad scheduling 
 is used to show 
your ad on a particular day and time. So if your goal is to *always show 
your campaigns* and just change the bids on a particular day and time, then 
AdSchedule is not appropriate for your use-case.

However, if your main goal is to *show your ads only on a particular 
schedule* and set the bids when your ads will be shown via bidModifier 

 field, 
then AdSchedule is perfect for your use-case. You can check this example 

 on 
how to set the bid modifier and you can just change the object being used. 

Thanks,
Vincent
AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/b9d89c15-cf56-403a-91a9-4db4e030d533%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Editing User List members

2018-02-19 Thread Keren

Hi,
We implemented user list add and edit operations in our application.
We are trying to test our code and facing unexpected behavior in AdWords 
UI.  We are not sure if our code works as expected.

Our test account id is 4167529180.
ADD GOOGLE ACCOUNT
SIGN OUT


We created a new user list and added 18 members (emails only) to the user 
list  (user list id: 545387847) using MutateMembersOperation, ADD operator.
After 24 hours the size of the user list (Gmail, Search Network) was 
displayed in UI as 4.
Then we deleted all emails using this operation:

MutateMembersOperation mutateMembersOperation = new 
MutateMembersOperation();
MutateMembersOperand operand = new MutateMembersOperand();
operand.setUserListId(userListId);
operand.setRemoveAll(true);
mutateMembersOperation.setOperand(operand);
mutateMembersOperation.setOperator(Operator.REMOVE);

Then we uploaded 3 new emails, we are now expecting the size to be between 
0 and 3, but the size of the user list still appears as 4 after a few days.
Can you please check why it still appears as 4? 

Thanks


-- 
This e-mail, as well as any attached document, may contain material which 
is confidential and privileged and may include trademark, copyright and 
other intellectual property rights that are proprietary to Kenshoo Ltd, 
 its subsidiaries or affiliates ("Kenshoo"). This e-mail and its 
attachments may be read, copied and used only by the addressee for the 
purpose(s) for which it was disclosed herein. If you have received it in 
error, please destroy the message and any attachment, and contact us 
immediately. If you are not the intended recipient, be aware that any 
review, reliance, disclosure, copying, distribution or use of the contents 
of this message without Kenshoo's express permission is strictly prohibited.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/86df6403-f993-42d7-ba5d-69940752c4f8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


AdGroupCriterionError.CONCRETE_TYPE_REQUIRED @ operations[0].operand

2018-02-19 Thread TommyTek
Hello,
  I'm migrating to Adwords API 201710 and I'm getting this error:
GroupCriterionError.CONCRETE_TYPE_REQUIRED @ operations[0].operand

I'm using googleads-php-lib V 32.1

I've read forum about this error and usually it's associated to not 
properly setting AdGroupCriterion to BiddableAdGroupCriterion

In my case the error seems to be elsewhere and I'm not being able to find 
it.

This is the SOAP request:

http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="https://adwords.google.com/api/adwords/cm/v201710"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>


xxx-xxx-xxx
REDACTED
x (AwApi-PHP, googleads-php-lib/32.1.0, 
PHP/5.6.33)
false
false





ADD

53774068962

keyword 1
BROAD







As you can see info about url and cpc are missing (while I set them in the 
code).


Here the SOAP response (not nicely formatted):

http://schemas.xmlsoap.org/soap/envelope/";>
https://adwords.google.com/api/adwords/cm/v201710";>
00056558587da1490ae9e852da0a77b9AdGroupCriterionServicemutate1
379soap:Client[AdGroupCriterionError.CONCRETE_TYPE_REQUIRED
 
@ operations[0].operand]
https://adwords.google.com/api/adwords/cm/v201710";>[AdGroupCriterionError.CONCRETE_TYPE_REQUIRED
 
@ operations[0].operand]
ApiExceptionhttp://www.w3.org/2001/XMLSchema-instance"; 
xsi:type="AdGroupCriterionError">operations[0].operandoperations
0operandAdGroupCriterionError.CONCRETE_TYPE_REQUIREDAdGroupCriterionError
CONCRETE_TYPE_REQUIRED


This is a dump of the $operation object before adding it to array 
$operators[] I pass to mutate  ( class type AdGroupCriterionService )

object(Google\AdsApi\AdWords\v201710\cm\AdGroupCriterionOperation)#12 (5) {
  ["operand":protected]=>
  object(Google\AdsApi\AdWords\v201702\cm\BiddableAdGroupCriterion)#47 (25) 
{
["userStatus":protected]=>
string(7) "ENABLED"
["systemServingStatus":protected]=>
NULL
["approvalStatus":protected]=>
NULL
["disapprovalReasons":protected]=>
NULL
["destinationUrl":protected]=>
string(0) ""
["firstPageCpc":protected]=>
NULL
["topOfPageCpc":protected]=>
NULL
["firstPositionCpc":protected]=>
NULL
["qualityInfo":protected]=>
NULL
["biddingStrategyConfiguration":protected]=>

object(Google\AdsApi\AdWords\v201710\cm\BiddingStrategyConfiguration)#25 (7)
 {
  ["biddingStrategyId":protected]=>
  NULL
  ["biddingStrategyName":protected]=>
  NULL
  ["biddingStrategyType":protected]=>
  NULL
  ["biddingStrategySource":protected]=>
  NULL
  ["biddingScheme":protected]=>
  NULL
  ["bids":protected]=>
  array(1) {
[0]=>
object(Google\AdsApi\AdWords\v201710\cm\CpcBid)#13 (4) {
  ["bid":protected]=>
  object(Google\AdsApi\AdWords\v201710\cm\Money)#29 (3) {
["microAmount":protected]=>
int(3)
["ComparableValueType":protected]=>
NULL

["parameterMap":"Google\AdsApi\AdWords\v201710\cm\ComparableValue":private]=>
array(1) {
  ["ComparableValue.Type"]=>
  string(19) "ComparableValueType"
}
  }
  ["cpcBidSource":protected]=>
  NULL
  ["BidsType":protected]=>
  NULL
  ["parameterMap":"Google\AdsApi\AdWords\v201710\cm\Bids":private]=>
  array(1) {
["Bids.Type"]=>
string(8) "BidsType"
  }
}
  }
  ["targetRoasOverride":protected]=>
  NULL
}
["bidModifier":protected]=>
NULL
["finalUrls":protected]=>
object(Google\AdsApi\AdWords\v201710\cm\UrlList)#24 (1) {
  ["urls":protected]=>
  array(1) {
[0]=>
string(47) "http://www.MYDOMAIN.COM?src=cc&id=13345";
  }
}
["finalMobileUrls":protected]=>
NULL
["finalAppUrls":protected]=>
NULL
["trackingUrlTemplate":protected]=>
NULL
["urlCustomParameters":protected]=>
NULL
["adGroupId":protected]=>
float(53774068962)
["criterionUse":protected]=>
NULL
["criterion":protected]=>
object(Google\AdsApi\AdWords\v201710\cm\Keyword)#59 (6) {
  ["text":protected]=>
  string(9) "keyword 1"
  ["matchType":protected]=>
  string(5) "BROAD"
  ["id":protected]=>
  NULL
  ["type":protected]=>
  NULL
  ["CriterionType":protected]=>
  NULL
  
["parameterMap":"Google\AdsApi\AdWords\v201710\cm\Criterion":private]=>
  array(1) {
["Criterion.Type"]=>
string(13) "CriterionType"
  }
}
["labels":protected]=>
NULL
["forwardCompatibilityMap":protected]=>
NULL
["baseCampaignId":protected]=>
NULL
["baseAdGroupId":protected]=>
NULL
["AdGroupCriterionType":protected]=>
NULL

["parameterMap":"Google\AdsApi\AdWords\v201702\cm\AdGroupCriterion":private]
=>
array(1) {
  ["AdGroupCriterion.Type"]=>
  string(20) "AdGroupCriterionType"
}
  }
  ["exemptionRequests":protec

Re: UNEXPECTED_INTERNAL_API_ERROR querying AdGroupAdService

2018-02-19 Thread 'Thanet Knack Praneenararat (AdWords API Team)' via AdWords API Forum
Hello MdV,

I'm confirming this and will get back to you when I have more information.

Best,
Thanet, AdWords API Team

On Monday, February 19, 2018 at 3:04:56 PM UTC+9, Thanet Knack 
Praneenararat (AdWords API Team) wrote:
>
> Hello MdV,
>
> How often the error has happened? 
> The error can happen sometimes when there are transient issues on the 
> servers.
> Usually, the frequency of error will reduce and it will disappear within a 
> few days.
>
> If the issue persists for many days, please let me know.
>
> Best,
> Thanet, AdWords API Team
>
> On Tuesday, February 13, 2018 at 10:33:13 PM UTC+9, MdV wrote:
>>
>> Hi API team,
>>
>> Since a couple of days we are seeing UNEXPECTED_INTERNAL_API_ERROR 
>> messages when retrieving template ads with the AdGroupAdService. Can you 
>> tell me if there is an issue with the service and if so when you expect it 
>> to be fixed?
>>
>>
>> Kind regards,
>> MdV
>>
>>
>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/ebb10a7c-62c6-41d4-9b57-197124ca1ea2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: is there a way to bid adjust on time or date?

2018-02-19 Thread Ken Dan Tinio
is ad schedule available in the API?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/b597c788-e9c7-446c-a43a-74e1e75f30b1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Adwords API Video campaigns

2018-02-19 Thread qamberali39
Hi Shwetha, 

Hope you are fine and doing good,

Any update on this issue ?

Thanks.

On Wednesday, July 19, 2017 at 2:51:52 AM UTC+5, Shwetha Vastrad (AdWords 
API Team) wrote:
>
> Hi Tom, 
>
> It is not possible to create Ads in a Video Campaign using AdWords API, 
> even if you have already created the campaign and the adGroup in the 
> AdWords UI. You can keep an eye on our blog 
>  for any 
> updates or announcements about this feature. 
>
> Regards,
> Shwetha, AdWords API Team.
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/a73b3a45-c0f5-46bc-84b0-146ba5dcea41%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Authenticate Google Adwords Email with Service Account API Email

2018-02-19 Thread 'Vincent Racaza (AdWords API Team)' via AdWords API Forum
Hi Ritesh,

In the AdWords API perspective, you can only authenticate in the AdWords 
API as service account if you have a G Suite domain 
. If you don't have a G Suite domain, then you 
need to authenticate as other types such as Installed application or Web 
application types. If you have a G Suite domain and you wish to 
authenticate as service account for the purpose of impersonation, then you 
need to follow this guide 

.

Service account authentication is quite complex in the AdWords API compared 
to other Google APIs so it is important that you follow the step-by-step 
guide from "Setting up service account access" section 

 to "Configuring your client library" section 
.
 
You also don't need to add the service account email address (e.g. 
xyx...@iam.gserviceaccount.com) in your AdWords account as the main purpose 
of this authentication type is to impersonate as any user in your AdWords 
account.

You may review and then follow the guide and let me know if any issue 
persists. If you encounter any issues/errors, then tell me what step you 
are currently having issues and provide any error messages or information 
regarding the issue via *Reply privately to author* option.

Thanks,
Vincent
AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/017ed219-f1e6-4d46-a637-7c5642e64d66%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: is there a way to bid adjust on time or date?

2018-02-19 Thread 'Vincent Racaza (AdWords API Team)' via AdWords API Forum
Hi Ken,

You cannot access your AdWords Scripts via the AdWords API as they are of 
completely different implementations. You can run the AdWords Scripts via 
the AdWords UI only and the AdWords API can be ran via different 
platforms/applications.

Thanks,
Vincent
AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/f989d72d-59e4-4e38-83bc-571a956b493f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: is there a way to bid adjust on time or date?

2018-02-19 Thread Ken Dan Tinio
How can I access my scripts via API? The scripts are really interesting. 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/00426070-16f1-4a67-a23b-20f22632f7fd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.