CAMPAIGN_PERFORMANCE_REPORT

2016-03-07 Thread Satendra Maurya
i am trying to download report for all campaign of all account in xml 
format . my code is here :
// $campaigns is  all campaign
foreach ($campaigns as $campaign) {
$filePath = realpath(dirname(__FILE__)) . 
"/../../frontend/web/reports/" . $campaign->name . '_' . $campaign->id . 
'.xml';
$selector->predicates[] = new \Predicate('CampaignId', 
'EQUALS', array($campaign->id));

// Optional: use predicate to filter out paused criteria.
// $selector->predicates[] = new 
\Predicate('CampaignStatus', 'NOT_IN', array('PAUSED'));
// Create report definition.
$reportDefinition = new \ReportDefinition();
$reportDefinition->selector = $selector;
$reportDefinition->reportName = 'Criteria performance 
report #' . uniqid();
$reportDefinition->dateRangeType = 'ALL_TIME';
$reportDefinition->reportType = 
'CAMPAIGN_PERFORMANCE_REPORT';
$reportDefinition->downloadFormat = 'XML';

$options = array();
// the report output.
 $options['includeZeroImpressions'] = true;
// Download report.
$report = \ReportUtils::DownloadReport($reportDefinition, 
$filePath, $user, $options);

}

it download all campaign but only one campaign have ROW element other 
campaign do not have campaign data. why is that ? report like this















-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/82e724b4-d6df-4f89-a002-971c906731d6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Issue in Adding the Device type using c# API

2016-03-07 Thread Joginder Yadav
Hi Anthony,

We can only set bid for mobile platform not for tablet and desktop.. What
to do if i want to favour tablet platform.

Thanks
On Mar 8, 2016 3:35 AM, "Anthony Madrigal" <
adwordsapiadvisor+anmadri...@google.com> wrote:

> Hi,
>
> When creating a campaign in the API, all platform types will be targeted.
> In order to give favor to one, you should set the bid modifier.
>
> Alternatively, you can also set the devicePreference
> 
>  for
> an ad.
>
> Cheers,
> Anthony
> 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/CANDJ-RWX52iBEA7-%2Bto74Le0N6cZFy0zk%2Be5LUxAdD5oXOwOkQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: BatchJobService: how to PHP

2016-03-07 Thread 'Umesh Dengale' via AdWords API Forum
Hello,

Adding each keyword will consider as one operation and BatchJobService.
mutate 

 operation 
(with ADD operator) takes array of BatchJobOperation 

 (using 
loop you could add multiple CampaignCriterionOperation 

 as 
described in the AddKeywordsInBulk 

 example) 
and return type will be BatchJobReturnValue 
(return
 
values from the BatchJobService). As per the rate sheet guide 
 each 
mutate operation count as one operation. 

To update the negative keywords at campaign level in bulk using 
BatchJobService.mutate 

 operation, 
you could use CampaignCriterionOperation.operand 

 as NegativeCampaignCriterion 

 and 
the operator 

 as SET 
.
 
We don't have example code for update keywords using BatchJobService. 
However, you could refer UpdateKeyword 
(which
 
uses CampaignCriterionService.mutate 

 operation) PHP 
example code from the client library and use similar approach for 
CampaignCriterionOperation for the BatchJobService to update negative 
keywords in bulk. 

Thanks,
Umesh, 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/13609639-0a7d-46c8-a872-d940a2e4802d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Issue in Adding the Device type using c# API

2016-03-07 Thread 'Anthony Madrigal' via AdWords API Forum
Hi,

When creating a campaign in the API, all platform types will be targeted. 
In order to give favor to one, you should set the bid modifier. 

Alternatively, you can also set the devicePreference 

 for 
an ad.

Cheers,
Anthony
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/67f3c329-eb58-4f10-b52f-0e8282d77459%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [OperationAccessDenied.OPERATION_NOT_PERMITTED_FOR_CAMPAIGN_TYPE @ operations[0].operand.ad; trigger:'DISPLAY(DISPLAY_MOBILE_APP)']

2016-03-07 Thread 'Anthony Madrigal' via AdWords API Forum
Hi,

Could you please *reply privately to author *your SOAP request and response 
so I can take a further look?

Thanks,
Anthony
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/5710a5ff-829b-4750-ba1e-7b1e365512dd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Updating Ad customizer feed

2016-03-07 Thread 'Yin Niu' via AdWords API Forum
Hello, 

Could you please send the SOAP request and response logs? Just click *Reply 
privately to author* in the forum when responding. 

Thanks,
Yin, 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/6d33f88a-c2b6-4866-b46a-55ddb6d7977e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Remarketing List Error

2016-03-07 Thread 'Josh Radcliff (AdWords API Team)' via AdWords API Forum
Hi Callum,

No update yet, but I'll be sure to update this thread as soon as I have 
more information.

Thanks,
Josh, AdWords API Team

On Monday, March 7, 2016 at 2:15:46 PM UTC-5, Callum Mckeefery wrote:
>
> Hi Josh,
>
> Do you have any updates on this?
>
> Kind Regards
> Callum
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/7a938ee2-ee45-4a88-ba5d-5913bb9e6ea9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: documentation for types on some reporting fields appears incorrect

2016-03-07 Thread GregT
Okay, thanks for the help!

On Friday, March 4, 2016 at 8:01:53 AM UTC-6, Michael Cloonan (AdWords API 
Team) wrote:
>
> Hello,
>
> I am advocating internally for fixing these fields to just render as 
> numbers, because the current formatting doesn't really make sense for data 
> that's meant to be parsed by applications.
>
> However, for now, it is safe to assume that these fields are rendering as 
> intended. If we do decide to make any changes, we will announce them on our 
> blog .
>
> I apologize for the inconvenience.
>
> Regards,
> Mike, AdWords API Team
>
> On Thursday, March 3, 2016 at 6:32:39 PM UTC-5, GregT wrote:
>>
>> Hi, Mike.
>>
>> Have you received any info about these fields?  
>>
>> Additionally, we have found a couple more:
>>
>>
>>1. AverageCost. The documentation says it's of type Money (so should 
>>be in micros), but we're getting back text like "3255123 per click". The 
>>number part looks fine (i.e. that it could be micros), but obviously "per 
>>click" is not.
>>2. Interactions.  The documentation says it's a long, but we're 
>>getting back text like "35123 clicks".
>>
>> Thanks again,
>> Greg
>>
>>
>> On Wednesday, February 24, 2016 at 1:52:08 PM UTC-6, Michael Cloonan 
>> (AdWords API Team) wrote:
>>>
>>> Hello,
>>>
>>> I definitely agree that these inconsistencies in the way things actually 
>>> work versus the way they're documented are really frustrating. 
>>> Unfortunately, I don't know which way is truly intended, so I am going to 
>>> get in contact with the engineering team to clarify and hopefully update 
>>> either the report rendering or the documentation so the two match.
>>>
>>> Regards,
>>> Mike, AdWords API Team
>>>
>>> On Wednesday, February 24, 2016 at 12:36:34 PM UTC-5, GregT wrote:

 Hi,

 We're upgrading from v201506 of the API, and because of the RMF, we 
 need to be able to display all the newly available metrics columns for the 
 reports that our end users see. Some of the metrics added to the reports 
 since v201506 appear to be documented incorrectly, with the types in the 
 documentation not matching reality. We just want to verify that the 
 documentation is wrong, as opposed to the documentation being correct and 
 eventually the reports changing the types of these fields (i.e. so we 
 don't 
 find our code breaking down the road).  The fields:


1. ActiveViewMeasurability: the documentation claims it's a double, 
but we are getting back percentages ("0.0%"), and the AdWords UI 
 displays a 
percentage for this metric.
2. ActiveViewViewability: same thing as #1.
3. ActiveViewCtr: same thing as #1.
4. AverageCpe: the documentation claims it's a double, but we 
appear to be getting back Money (i.e. micros), and the AdWords UI 
 displays 
this as money.
5. AverageCpv: same thing as #4.


 Thanks in advance,
 Greg



-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/07f4b117-d10b-4b6f-b8d8-95ac5105865f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: How to set network setting like WIfi and 3G?

2016-03-07 Thread 'Anthony Madrigal' via AdWords API Forum
Hi,

Could you please specify exactly what you mean by setting the network type 
to 3G or Wifi?

Thanks,
Anthony
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/578618bf-4d44-4d58-b72a-ef0bfb563131%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Remarketing List Error

2016-03-07 Thread Callum Mckeefery
Hi Josh,

Do you have any updates on this?

Kind Regards
Callum

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/2b3d54a5-f1d4-494d-907c-fa1944909003%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: OfflineConversions not tracking

2016-03-07 Thread 'Yin Niu' via AdWords API Forum
Hello, 

You can use Click Performance Report 

 to 
confirm the date of GCLID. 

For importing conversions, please make sure the validation rules 

 are 
met before uploading the offline conversions. 

Thanks,
Yin, 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/49819a63-341f-4a85-9cfa-c13fec7258b9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Updating Ad customizer feed

2016-03-07 Thread Dali Bardi
Hello!
I'm using AdWords API (v201509) to manage my AdWords account. I want 
to update (SET operation) the values (FeedItemAttributeValue) of my Ad 
customizer feed using the FeedItemService but i'm having  

OperationAccessDenied.ACTION_NOT_PERMITTED error !

Should i use an another service ?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/5ea3dec9-c93a-48a1-a3ab-1b0253090b46%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [InternalApiError.UNEXPECTED_INTERNAL_API_ERROR @ com.google.ads.api.services.common.error.InternalApiError

2016-03-07 Thread 'Michael Cloonan (AdWords API Team)' via AdWords API Forum
This issue should be resolved. Please try again and report back if you have 
any difficulties.

Regards,
Mike, AdWords API Team

On Thursday, February 25, 2016 at 9:59:32 AM UTC-5, Michael Cloonan 
(AdWords API Team) wrote:
>
> Hello,
>
> I've just followed up with our engineering team again, and I will let you 
> know whenever I have something to share.
>
> Regards,
> Mike, AdWords API Team
>
> On Thursday, February 25, 2016 at 9:53:09 AM UTC-5, Jesse O'Brien wrote:
>>
>>
>> Also having this same error using the PHP library. Wondering if there's 
>> any status updates on this?
>>
>>
>> On Tuesday, February 23, 2016 at 9:38:46 AM UTC-5, Michael Cloonan 
>> (AdWords API Team) wrote:
>>>
>>> Hello,
>>>
>>> We have received other reports of this issue, and our engineering team 
>>> is looking into it. I will let you know when I hear something.
>>>
>>> Regards,
>>> Mike, AdWords API Team
>>>
>>> On Monday, February 22, 2016 at 11:07:27 PM UTC-5, Vipeesh Pavithran 
>>> wrote:


 Still am facing that issue.

 My customer id :- 762-463-8336

 Adwords test account.

>>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/84a5dbf9-6767-4219-9196-064a9e4904c2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: CampaignCriterionService return empty parentsLocations

2016-03-07 Thread 'Michael Cloonan (AdWords API Team)' via AdWords API Forum
Hello,

The LocationCriterion includes a Location, which has an ID that should be 
filterable.

However, keep in mind that the LocationCriterionService is fairly slow, and 
doing lookups each time you have an ID is probably going to cause your 
application to be slower than it needs to be. A better alternative would be 
to download and parse the provided CSV file from the Geographical Targeting 
page, which is kept up to date with complete information from the 
LocationCriterionService.

Regards,
Mike, AdWords API Team

On Monday, March 7, 2016 at 12:05:24 PM UTC-5, 
alexander.schle...@brainson.de wrote:
>
> Hello,
>
> thanks for your answer. How do I manage it with LocationCriterionService. 
> Can I filter it with ID? Because in die Doc's are only the fields 
> `canonicalName` and `reach`.
>
> Regard,
> Alexander Schlegel
>
> Am Montag, 7. März 2016 16:31:50 UTC+1 schrieb Michael Cloonan (AdWords 
> API Team):
>>
>> Hello,
>>
>> I believe the parent locations are only supposed to populate IDs; this is 
>> expected.
>>
>> You can look up what each ID actually means using our Geographical 
>> Targeting page 
>>  
>> (either 
>> manually or by downloading the CSV provided there), or by using the 
>> LocationCriterionService 
>> 
>> .
>>
>> Regards,
>> Mike, AdWords API Team
>>
>> On Friday, March 4, 2016 at 11:16:02 AM UTC-5, alexander...@brainson.de 
>> wrote:
>>>
>>> Hallo Guys,
>>>
>>> today was my first day with the Adwords API.
>>> I use the Beta Version of the Framework: 
>>> https://github.com/googleads/googleads-php-lib/tree/experimental
>>>
>>> Now I would like to get all Location Criterions of a Campaign.
>>> And I get it, but the parentLocations are empty (except the ID)
>>>
>>> My Code is like: http://pastebin.com/m4BexPa0
>>> The Request Id is: 00052d3ac61a26c80ac4e544b5072676
>>>
>>> And the Return is like:
>>>
>>> *object*(*Google\AdsApi\AdWords\v201601\cm\Location*)[*89*]
>>>   *protected* 'locationName' => null
>>>   *protected* 'displayType' => null
>>>   *protected* 'targetingStatus' => null
>>>   *protected* 'parentLocations' => null
>>>   *protected* 'id' => int 2276
>>>   *protected* 'type' => null
>>>   *protected* 'CriterionType' => null
>>>   *public* 'Criterion.Type' => string 'Location' 
>>>
>>>
>>>
>>>
>>>
>>> *(length=8)It is a Bug? Or made a Mistake?I hope you can help me out ;) *
>>>
>>>
>>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/1b98981a-b423-4597-a28c-255ff00a6037%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Gamil Ads HTML FORM

2016-03-07 Thread 'Umesh Dengale' via AdWords API Forum
Hello,

We support AdWords API related issues. Above question is related to the 
AdWords product (UI). Could you please post this question in the AdWords 
community 
? 
Someone from AdWords product support will help.

Thanks,
Umesh, 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/48c17a6c-7778-4fcf-ad56-c3401d8e870a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: BatchJobService: how to PHP

2016-03-07 Thread giorgio . jobtome
Hi, thanks for the answer.
I've already read all your guides but still not understand how to use 
BatchJobService.
I mean, im easily trying to add 100negative keywords per campaign and, of 
course, im using one result foreach kw. If I want to add those 100kws in a 
one result I have to add 400rows of code using batchjobservice?
As I said just let me know as an example how to modify these rows of code 
using batchjobservice:

  $operations[] = new CampaignCriterionOperation($negativeCriterion, 'ADD');
  $result = $campaignCriterionService->mutate($operations);


Il giorno giovedì 3 marzo 2016 20:46:56 UTC+1, Umesh Dengale ha scritto:
>
> Hello,
>
> You could use the BatchJobService 
> 
>  to 
> add keywords in bulk. The BatchJobService allows asynchronous processing. 
> You could upload 500 keywords in one request. Please check our batch 
> processing guide 
> , best 
> practices guide  
> and 
> AddKeywordsInBulk 
> 
>  PHP 
> example code from the client library.
>
> Thanks,
> Umesh, 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/81840775-3d75-46dd-9cfa-69d547e513b0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: CampaignCriterionService return empty parentsLocations

2016-03-07 Thread alexander . schlegel
Hello,

thanks for your answer. How do I manage it with LocationCriterionService. 
Can I filter it with ID? Because in die Doc's are only the fields 
`canonicalName` and `reach`.

Regard,
Alexander Schlegel

Am Montag, 7. März 2016 16:31:50 UTC+1 schrieb Michael Cloonan (AdWords API 
Team):
>
> Hello,
>
> I believe the parent locations are only supposed to populate IDs; this is 
> expected.
>
> You can look up what each ID actually means using our Geographical 
> Targeting page 
>  
> (either 
> manually or by downloading the CSV provided there), or by using the 
> LocationCriterionService 
> 
> .
>
> Regards,
> Mike, AdWords API Team
>
> On Friday, March 4, 2016 at 11:16:02 AM UTC-5, alexander...@brainson.de 
>  wrote:
>>
>> Hallo Guys,
>>
>> today was my first day with the Adwords API.
>> I use the Beta Version of the Framework: 
>> https://github.com/googleads/googleads-php-lib/tree/experimental
>>
>> Now I would like to get all Location Criterions of a Campaign.
>> And I get it, but the parentLocations are empty (except the ID)
>>
>> My Code is like: http://pastebin.com/m4BexPa0
>> The Request Id is: 00052d3ac61a26c80ac4e544b5072676
>>
>> And the Return is like:
>>
>> *object*(*Google\AdsApi\AdWords\v201601\cm\Location*)[*89*]
>>   *protected* 'locationName' => null
>>   *protected* 'displayType' => null
>>   *protected* 'targetingStatus' => null
>>   *protected* 'parentLocations' => null
>>   *protected* 'id' => int 2276
>>   *protected* 'type' => null
>>   *protected* 'CriterionType' => null
>>   *public* 'Criterion.Type' => string 'Location' 
>>
>>
>>
>>
>>
>> *(length=8)It is a Bug? Or made a Mistake?I hope you can help me out ;) *
>>
>>
>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/8286ccda-a2bd-45e8-90a9-75a76f8bc419%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: UAC (Universal app campaigns) support in the API

2016-03-07 Thread 'Umesh Dengale' via AdWords API Forum
Hi Cesar,

Currently, the AdWords API services and reports don't support the Universal 
App campaigns. Please watch our blog 

 for 
any updates or announcements.

Regards,
Umesh, 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/06c348d0-74e0-498f-894d-0ae99d45a5f3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Managed Customer name empty

2016-03-07 Thread 'Anthony Madrigal' via AdWords API Forum
Hi Barani,

I have not ran into any issues related to this. Could you please *reply 
privately to author *so that I can further investigate this?

Thanks,
Anthony
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/16a92864-a2fe-40e9-9a17-16c2f3268aa2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: How to link production account to test account.

2016-03-07 Thread 'Anthony Madrigal' via AdWords API Forum
Hello,

You cannot link a test account with a production account. You can use the 
developer token generated from the production account with your test 
account.

Here is our guide on Test Accounts 
 for more 
information on test accounts and how to use the API with them.

Cheers,
Anthony
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/2fc45aeb-805e-4130-b5a8-336a567212de%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: AdWords Dev Application

2016-03-07 Thread 'Anthony Madrigal' via AdWords API Forum


Hi Ted,


Have you filled out the second part 
 of the application form? 
If not, please go ahead and fill it out. Once you submit that form, the 
AdWords API Compliance team will respond with an answer within a business 
day.

If you DID fill out this form, let me know your AdWords manager account 
(MCC) ID (e.g 123-456-7890) and I can check in with the compliance team.


Regards,

Anthony

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/10e6ad06-1e25-4adc-bee3-a2495be8fbfd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: TargetingIdeaService suggested keywords relevance and data integrity

2016-03-07 Thread 'Yin Niu' via AdWords API Forum
Hi Yonatan, 

About ad relevance, please view a related discussion 

 on 
AdWords forum. 

For UI and API discrepancy, please send SOAP request and response logs and 
a screenshot of the UI result. Please *click Reply privately to author *in 
the forum when responding.

Thanks,
Yin, 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/7350c7d2-bbfc-4987-8087-6f83cb09a663%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


AdWords Dev Application

2016-03-07 Thread ted . baxa
Hello---I applied for an Adwords developer token on march 1 and haven't 
heard anything yet back yet--including any sort of application confirmation 
email...I realize this forum says these sorts of questions should be 
replied to ongoing threads with the review team, but I haven't had any 
communication with the team and our Google support rep directed me here.

Is there a way to (a) get confirmation that my application was received, 
(b) get a sense of how long it normally takes to get approved/get a token?

Thanks!

Ted

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/0e79a290-fe12-4195-aea2-3df35a421e1a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: CampaignCriterionService return empty parentsLocations

2016-03-07 Thread 'Michael Cloonan (AdWords API Team)' via AdWords API Forum
Hello,

I believe the parent locations are only supposed to populate IDs; this is 
expected.

You can look up what each ID actually means using our Geographical 
Targeting page 
 (either 
manually or by downloading the CSV provided there), or by using the 
LocationCriterionService 

.

Regards,
Mike, AdWords API Team

On Friday, March 4, 2016 at 11:16:02 AM UTC-5, 
alexander.schle...@brainson.de wrote:
>
> Hallo Guys,
>
> today was my first day with the Adwords API.
> I use the Beta Version of the Framework: 
> https://github.com/googleads/googleads-php-lib/tree/experimental
>
> Now I would like to get all Location Criterions of a Campaign.
> And I get it, but the parentLocations are empty (except the ID)
>
> My Code is like: http://pastebin.com/m4BexPa0
> The Request Id is: 00052d3ac61a26c80ac4e544b5072676
>
> And the Return is like:
>
> *object*(*Google\AdsApi\AdWords\v201601\cm\Location*)[*89*]
>   *protected* 'locationName' => null
>   *protected* 'displayType' => null
>   *protected* 'targetingStatus' => null
>   *protected* 'parentLocations' => null
>   *protected* 'id' => int 2276
>   *protected* 'type' => null
>   *protected* 'CriterionType' => null
>   *public* 'Criterion.Type' => string 'Location' 
>
>
>
>
>
> *(length=8)It is a Bug? Or made a Mistake?I hope you can help me out ;) *
>
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/d573a6a0-622a-4362-944f-ac4eaba28873%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Irregular Labels & LabelIds formatting in CAMPAIGN_PERFORMANCE_REPORT

2016-03-07 Thread 'Yin Niu' via AdWords API Forum
Hello, 

AdWords API  doesn't guarantee these lists to be in the same order in 
reports. Please use the LabelService 
 
to 
obtain ID - name pairs. We recommend caching IDs on the client side.

Thanks,
Yin, 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/045769a8-9293-43bd-8d8c-9af5468cba89%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Missing data from CampaignCriterionService.get (C#, v201601)

2016-03-07 Thread 'Michael Cloonan (AdWords API Team)' via AdWords API Forum
Hello,

Good news! This field should now be selectable, even in existing versions. 
Please give it a try.

Regards,
Mike, AdWords API Team

On Tuesday, February 9, 2016 at 10:19:05 AM UTC-5, Michael Cloonan (AdWords 
API Team) wrote:
>
> Hello,
>
> The IpAddress field isn't selectable, so there is no way to get data for 
> it back from the API. I'm not sure why it's not selectable, however, so I'm 
> going to contact our engineering team to see if we can possibly make this 
> field selectable in a future version of the API. For now, unfortunately, it 
> looks like you can't get this data via the API.
>
> Regards,
> Mike, AdWords API Team
>
> On Tuesday, February 9, 2016 at 1:43:32 AM UTC-5, A. Treble wrote:
>>
>> As requested, here are the request/response logs:
>>
>> AdsClientLibs.SoapXmlLogs Information: 1 : 
>> -BEGIN API CALL-
>>
>> Request
>> ---
>>
>> POST /api/adwords/cm/v201601/CampaignCriterionService
>> User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; MS Web Services Client 
>> Protocol 4.0.30319.34209)
>> Authorization: **
>> Content-Type: text/xml; charset=utf-8
>> SOAPAction: ""
>> Host: adwords.google.com
>> Content-Length: 1164
>> Accept-Encoding: gzip
>> Connection: Keep-Alive
>> TimeStamp: Tue, 09 Feb 2016 08:42:55 GMT
>>
>>
>> http://schemas.xmlsoap.org/soap/envelope/"; xmlns:xsi="
>> http://www.w3.org/2001/XMLSchema-instance"; xmlns:xsd="
>> http://www.w3.org/2001/XMLSchema";>https://adwords.google.com/api/adwords/cm/v201601";>> xmlns="https://adwords.google.com/api/adwords/cm/v201601";>**>  
>> xmlns="https://adwords.google.com/api/adwords/cm/v201601";>1385642165>  
>> xmlns="https://adwords.google.com/api/adwords/cm/v201601";>INSERT_YOUR_COMPANY_OR_APPLICATION_NAME_HERE
>>  
>> (AwApi-DotNet/18.22.0, Common-Dotnet/3.12.0, .NET CLR/4.0.30319.34209, , 
>> gzip)https://adwords.google.com/api/adwords/cm/v201601
>> ">CampaignIdIdCriteriaTypeCampaignIdEQUALS347371961IsNegativeEQUALStrue
>>
>> Response
>> 
>>
>> Content-Encoding: 
>> X-Content-Type-Options: nosniff
>> X-Frame-Options: SAMEORIGIN
>> X-XSS-Protection: 1; mode=block
>> Content-Length: 473
>> Cache-Control: private, max-age=0
>> Content-Type: text/xml; charset=UTF-8
>> Date: Tue, 09 Feb 2016 06:42:39 GMT
>> Expires: Tue, 09 Feb 2016 06:42:39 GMT
>> Server: GSE
>> TimeStamp: Tue, 09 Feb 2016 08:42:55 GMT
>>
>>
>> > xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/";>>  
>> xmlns="https://adwords.google.com/api/adwords/cm/v201601";>00052b509fa23c880ac4da02d9000217CampaignCriterionServiceget1227>  
>> xmlns="https://adwords.google.com/api/adwords/cm/v201601";>2CampaignCriterionPage>  
>> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
>> xsi:type="NegativeCampaignCriterion">347371961true>  
>> xsi:type="IpBlock">23078300211IP_BLOCKIpBlockNegativeCampaignCriterion>  
>> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
>> xsi:type="NegativeCampaignCriterion">347371961true>  
>> xsi:type="IpBlock">42157191244IP_BLOCKIpBlockNegativeCampaignCriterion
>> -END API CALL---
>>
>> On Monday, February 8, 2016 at 9:43:00 PM UTC+2, Yin Niu wrote:
>>>
>>> Hello, 
>>>
>>> Could you please send SOAP request and response logs so that we can 
>>> analyze further? 
>>>
>>> Thanks,
>>> Yin, 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/4f009e81-887f-4d07-9743-10a85d28d662%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: SOAP XML error for Chinese Names in ManagedCustomerService

2016-03-07 Thread maxSonic Sun
Hi Mark,

Any update?

Best Regards,
Sonic Sun

On Wednesday, February 24, 2016 at 7:27:19 PM UTC+8, maxSonic Sun wrote:
>
> Hi Mark,
>
> Same encoding.
>
> ubuntu@ip-10-0-26-250:~$ echo $LANG
> en_US.UTF-8
>
> Best Regards
> Sonic
>
> On Wednesday, February 24, 2016 at 4:47:30 AM UTC+8, Mark Saniscalchi 
> wrote:
>>
>> Hello Sonic,
>>
>> I can see that you have en_US.utf8 as an available locale, but is it 
>> actually being used? What is the output of echo $LANG? I've reproduced 
>> and resolved your issue by setting the locale to a different value, so I 
>> suspect you might not actually have that set correctly on the VM.
>>
>> I pointed out the logger issue earlier because it appeared in the output 
>> and *was not* related to your case, so I wanted to make that clear. 
>> Sorry if that instead caused any confusion.
>>
>> Regards,
>> Mark
>>
>>
>>
>> On Saturday, February 20, 2016 at 2:14:47 AM UTC-5, maxSonic Sun wrote:
>>>
>>> Hi Mark,
>>>
>>> On my server machine, the locale is
>>> ubuntu@ip-10-0-24-250:~$ locale -a
>>> C
>>> C.UTF-8
>>> en_US.utf8
>>> POSIX
>>>
>>> But I still have the problem. The system I have is ubuntu 14.04 server 
>>> on aws. That should not be the ANSII encoding problem. 
>>> *And by the way, my problem is not caused by the logger as you pointed 
>>> out in the previous post, it is caused by the decoding of the xml. *The 
>>> scenario you pointed out happened nowhere on my machine.
>>>
>>> As you can see, is a SAX parser problem.
>>>
>>>
>>> 
>>>
>>>
>>>
>>>
>>>
>>> On Saturday, February 20, 2016 at 12:44:58 AM UTC+8, Mark Saniscalchi 
>>> wrote:

 Hello Sonic,

 Sorry for the delay. If you look to my initial response, I did run and 
 successfully retrieve an account name containing utf-8 characters using 
 the 
 get_account_hierarchy.py example in v201509 using Python 2. This was on a 
 machine where the default encoding is utf-8. I provided the code above as 
 a 
 potential work-around, but if that still fails to work, I would suggest 
 modifying the default encoding used by your VM to utf-8.

 You may recall earlier that I was able to replicate your issue on a VM 
 using ANSII encoding. I was also able to resolve the problem on that VM by 
 modifying the default encoding to utf-8. The suds-jurko library doesn't 
 seem to state this as a requirement, but it doesn't seem to handle utf-8 
 characters well otherwise. Going forward, we'll be suggesting in our 
 documentation that setting the default encoding to utf-8 is a requirement.

 Regards,
 Mark

 On Friday, February 19, 2016 at 9:42:16 AM UTC-5, maxSonic Sun wrote:
>
> Hi Mark, 
>
> Any update?
>
> Best Regards,
> Sonic
>
> On Saturday, February 6, 2016 at 1:08:31 AM UTC+8, Mark Saniscalchi 
> wrote:
>>
>> Hello Sonic,
>>
>> That looks correct, so you are using the right version of suds-jurko 
>> at least.
>>
>> On my workstation, I created a campaign with the name that you're 
>> having issues parsing and ran the get_campaigns.py example. I ran (sort 
>> of) 
>> without issues:
>>
>> INFO:oauth2client.client:Refreshing access_token
>>> DEBUG:suds.transport.http:opening (
>>> https://adwords.google.com/api/adwords/cm/v201509/CampaignService?wsdl
>>> )
>>> DEBUG:suds.transport.http:sending:
>>> URL: 
>>> https://adwords.google.com/api/adwords/cm/v201509/CampaignService
>>> HEADERS: {'Soapaction': '""', 'SOAPAction': '""', 'Content-Type': 
>>> 'text/xml; charset=utf-8', 'Content-type': 'text/xml; charset=utf-8', 
>>> 'Authorization': u'REDACTED'}
>>> MESSAGE:
>>> http://schemas.xmlsoap.org/soap/envelope/"; xmlns:ns1="
>>> https://adwords.google.com/api/adwords/cm/v201509"; xmlns:xsi="
>>> http://www.w3.org/2001/XMLSchema-instance"; xmlns:tns="
>>> https://adwords.google.com/api/adwords/cm/v201509"; xmlns:SOAP-ENV="
>>> http://schemas.xmlsoap.org/soap/envelope/
>>> ">REDACTEDREDACTEDREDACTEDfalsefalseIdNameStatus0100
>>> Traceback (most recent call last):
>>>   File "/usr/local/lib/python2.7/logging/__init__.py", line 859, in 
>>> emit
>>> msg = self.format(record)
>>>   File "/usr/local/lib/python2.7/logging/__init__.py", line 732, in 
>>> format
>>> return fmt.format(record)
>>>   File "/usr/local/lib/python2.7/logging/__init__.py", line 471, in 
>>> format
>>> record.message = record.getMessage()
>>>   File "/usr/local/lib/python2.7/logging/__init__.py", line 335, in 
>>> getMessage
>>> msg = msg % self.args
>>>   File "/usr/local/lib/python2.7/dist-packages/suds/__init__.py", 
>>> line 168, in 
>>> __str__ = lambda x: unicode(x).encode('utf-8')
>>>   File 
>>> "/usr/local/lib/python2

OfflineConversions not tracking

2016-03-07 Thread Sam Craig
I've got a scheduled script that adds all of our offline conversions 
2x/day; it hasn't had any changes, but there are no conversions being 
tracked in the past week.  In an effort to troubleshoot, I've manually 
added several recent conversions that should have a click date and 
conversion date that's recent.  I get an acknowledgement from the Adwords 
API (no errors), but still no conversion.

1 - Is there a better way to confirm the date of the GCLID so I'm not 
wasting time looking for a conversion on the wrong date?
2 - Is there a better place to validate successfully-submitted conversions 
(obvious places like the conversion "last reported" are showing no 
conversions)
3 - Help?

An example SOAP response:

http://schemas.xmlsoap.org/soap/envelope/";>
https://adwords.google.com/api/adwords/cm/v201509";>
00052d766011d6f00ac42047580710d8
OfflineConversionFeedServicemutate
1183
https://adwords.google.com/api/adwords/cm/v201509";>
OfflineConversionFeedReturnValue
CKCs98mup8sCFQ6oaQodkYUGjg
NHS Survey Funnel - Purchases
20160304 142413 America/New_York
27.120075


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/fc28ed0e-b0b3-4d61-b521-c41841443db6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Data Issue in AdGroup Performance Report for AdGroupMobileBidModifier

2016-03-07 Thread 'Nadine Sundquist (AdWords API Team)' via AdWords API Forum
Hello,

Thank you for the additional information. That confirms my theory. We're 
looking into it, and I'll keep you updated on our progress.

Cheers,
Nadine, AdWords API Team

On Monday, March 7, 2016 at 8:39:14 AM UTC-5, suvod...@adnabu.com wrote:
>
> Hi Nadine
>
> Any update on this? I had sent you the details you had asked for.
>
> On Saturday, March 5, 2016 at 4:40:22 AM UTC+5:30, Nadine Sundquist 
> (AdWords API Team) wrote:
>>
>> Hi,
>>
>> One other thing would really help me out. Could you also click *Reply 
>> privately to author* in the forum and send me your customer ID? That 
>> would be a huge help.
>>
>> Best,
>> Nadine, AdWords API Team
>>
>> On Friday, March 4, 2016 at 6:07:53 PM UTC-5, Nadine Sundquist (AdWords 
>> API Team) wrote:
>>>
>>> Hello,
>>>
>>> So, it looks like this value related to AdGroupBidModifier.bidModifier 
>>> .
>>>  
>>> The only time I can possibly think of this being blank (--) would be if 
>>> there was no AdGroupBidModifier set. Is that the case with some of your 
>>> campaigns? We'll start looking into it in the meantime. I just want to 
>>> verify that's the case here.
>>>
>>> Thanks,
>>> Nadine, AdWords API Team
>>>
>>> On Friday, March 4, 2016 at 3:51:04 PM UTC-5, suvodhoy sinha wrote:

 I see an inconsistency in the data in Ad Group Performance Report. We 
 have four variations of setting mobile bid modifier in the adwords 
 interface. For each of these I have mentioned the value which comes in the 
 report under the column *mobileBidAdj*

1. 0% : 1.0
2. 20% (this is an example value can be in -90% to 300%) : 1.2
3. leave blank (*--*) : 0.0
4. -100% : 0.0

 As you will notice the value is same for the 3rd and 4th option which 
 makes it very difficult to distinguish. As per my knowledge, if you 
 are leaving the modifier blank ,ie, --, it means you are using the same 
 bid 
 for mobile. So 0% and -- both mean the same and should ideally return 1.0 
 for both if not 1.0 and -- respectively. Is this behaviour expected or 
 am I missing something?

>>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/bdb35a88-cff0-4ff6-8864-c1ab1b642d56%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Data Issue in AdGroup Performance Report for AdGroupMobileBidModifier

2016-03-07 Thread suvodhoy
Hi Nadine

Any update on this? I had sent you the details you had asked for.

On Saturday, March 5, 2016 at 4:40:22 AM UTC+5:30, Nadine Sundquist 
(AdWords API Team) wrote:
>
> Hi,
>
> One other thing would really help me out. Could you also click *Reply 
> privately to author* in the forum and send me your customer ID? That 
> would be a huge help.
>
> Best,
> Nadine, AdWords API Team
>
> On Friday, March 4, 2016 at 6:07:53 PM UTC-5, Nadine Sundquist (AdWords 
> API Team) wrote:
>>
>> Hello,
>>
>> So, it looks like this value related to AdGroupBidModifier.bidModifier 
>> .
>>  
>> The only time I can possibly think of this being blank (--) would be if 
>> there was no AdGroupBidModifier set. Is that the case with some of your 
>> campaigns? We'll start looking into it in the meantime. I just want to 
>> verify that's the case here.
>>
>> Thanks,
>> Nadine, AdWords API Team
>>
>> On Friday, March 4, 2016 at 3:51:04 PM UTC-5, suvodhoy sinha wrote:
>>>
>>> I see an inconsistency in the data in Ad Group Performance Report. We 
>>> have four variations of setting mobile bid modifier in the adwords 
>>> interface. For each of these I have mentioned the value which comes in the 
>>> report under the column *mobileBidAdj*
>>>
>>>1. 0% : 1.0
>>>2. 20% (this is an example value can be in -90% to 300%) : 1.2
>>>3. leave blank (*--*) : 0.0
>>>4. -100% : 0.0
>>>
>>> As you will notice the value is same for the 3rd and 4th option which 
>>> makes it very difficult to distinguish. As per my knowledge, if you are 
>>> leaving the modifier blank ,ie, --, it means you are using the same bid for 
>>> mobile. So 0% and -- both mean the same and should ideally return 1.0 for 
>>> both if not 1.0 and -- respectively. Is this behaviour expected or am I 
>>> missing something?
>>>
>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/daa2705f-4708-4969-b917-84d475ac5778%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


How to link production account to test account.

2016-03-07 Thread Nam Le
I had create a production account with developer token 




After that. I create a test account. 

But when i link production account with test account. I got error: 
The manager cannot create more client accounts.


How can fix this issue 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/bd8969aa-37a4-4483-a59c-ca8622287f51%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


AdWords API basic access

2016-03-07 Thread Dmitry
I recently applied for the basic access to the API for MCC account 
717-838-3067. And I've got an e-mail with a link to the form to complete 
the application process. But when I go to this link, I get the error "403 
Forbidden". How I can decide this problem?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/9d8ce75b-e5c1-4e6e-90b0-4ff6f4a7331f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Basic API access

2016-03-07 Thread Dmitry
I recently applied for the basic access to the API for MCC account 
717-838-3067. And I've got an e-mail with a link to the form 
(https://services.google.com/fb/forms/newtokenlow/) to complete the 
application process. But when I go to this link, I get the error "430 
Forbidden". How I can decide this problem?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/9a9fc4ff-0fb3-40a3-8bcd-a15362e3b73b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Gamil Ads HTML FORM

2016-03-07 Thread Asim Khan

I have creative for Gmail ad with FORM. As per Google Ad specs, we can have 
a form inside Google Ads.
https://support.google.com/displayspecs/answer/6256348?hl=en

As it is prohibited to use javascript or iFrame.

Once user will click submit button, how will form data will be saved in our 
server?
If possible share sample example for reference.

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/48622e07-6123-47a4-929c-dbf53c0fda29%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Gmail ad with HTML5 form

2016-03-07 Thread Asim Khan
I have creative for Gmail ad with FORM. As per Google Ad specs, we can have 
a form inside Google Ads.
https://support.google.com/displayspecs/answer/6256348?hl=en

As it is prohibited to use javascript or iFrame.

Once user will click submit button, how will form data will be saved in our 
server?
If possible share sample example for reference.

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/bab56caf-bfd8-495e-8278-1b665dfe74c8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


TargetingIdeaService suggested keywords relevance and data integrity

2016-03-07 Thread yonatan
Hi,

Using the TargetingIdeaService to get KW ideas, I'm having several problems:
1. I don't know how the "relevance" order works. (I saw an old post about 
it and 1 answer said that it's based on competition, but it'a just not true)
2. The data for SEARCH_VOLUME, AVERAGE_CPC and COMPETITION for each idea 
look very different for the same data shown on the UI results (for the same 
text). Any explanation regarding that?

Thanks,
Yonatan

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/75f1168d-5192-4e86-85c8-95cec9f8f387%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Managed Customer name empty

2016-03-07 Thread Barani velan
Hi,

Recently one of our customer reported that some customer names are 
missing/empty compared to his Adwords MCC account. After analysing logs we 
found that we are getting empty string for name field. We also confirmed 
that the missing names are not empty in his MCC account. We are getting 
customerId, currencyCode, timeZone  except name. Can you please explain in 
what conditions API will return customer name field as empty?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/fa23e895-8e6d-4f87-9900-a8529279d5b8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: UAC (Universal app campaigns) support in the API

2016-03-07 Thread Cesar D.
Hi Umesh,

It's been 5 months down the road and a new API version has been 
released. I couldn't find anything about it in the release notes. Is the 
situation still the same regarding Universal App Campaigns?

Thanks,
César

On Wednesday, October 28, 2015 at 3:52:30 PM UTC+1, Umesh Dengale wrote:
>
> Hello,
>
> Currently, the AdWords API (including API reports) do not support the 
> Universal App Campaigns. We can't comment on any future features of 
> AdWords API. Please keep an eye on our AdWords API blog 
>  for any updates or 
> announcements.
>
> Thanks,
> Umesh, 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/6b443dcf-a6da-4914-a41a-b539e6999b3d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[OperationAccessDenied.OPERATION_NOT_PERMITTED_FOR_CAMPAIGN_TYPE @ operations[0].operand.ad; trigger:'DISPLAY(DISPLAY_MOBILE_APP)']

2016-03-07 Thread Joginder Yadav
Hi 

I created a campaign with advertisingChannelType -  "DISPLAY" and 
 advertisingChannelSubType - "DISPLAY_MOBILE_APP".

While adding creative I am getting an error " 
*[OperationAccessDenied.OPERATION_NOT_PERMITTED_FOR_CAMPAIGN_TYPE 
@ operations[0].operand.ad; trigger:'DISPLAY(DISPLAY_MOBILE_APP)'] *".

Can anyone help on this ?

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/4b89c674-0924-4917-88f1-6ca1657e7281%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.