Re: How can I shred XML report format to a database?

2016-03-04 Thread chris h
Tell us the parse error you are getting with XmlDocument

On Friday, March 4, 2016 at 3:12:43 PM UTC-5, Big Daddy Leon wrote:
>
> I'm using the .NET Client Library. AdWords API allows downloading report 
> data in a number of formats. I am using the XML format as illustrated in 
> the sample code:
>
>  ReportDefinition definition = new ReportDefinition()
> {
> reportName = "GENDER_PERFORMANCE_REPORT",
> reportType = 
> ReportDefinitionReportType.GENDER_PERFORMANCE_REPORT,
> downloadFormat = DownloadFormat.XML,
> 
>
> The XML document that is created is of this format:
>
>
> 
> -
>
> 
>
> 
> -
> -
> 
> 
> 
> 
>100 more columns
> 
> 
> 
> 
> 
>
>   currency="USD"/>
>   currency="USD"/>
>   currency="USD"/>
>   currency="USD"/>
>   currency="USD"/>
> etc.
>   
> 
>
> Why is the data in this format? I can't seem to process this using .NET 
> approaches such as XmlDocument(). I tried a couple of XML parsers that 
> complain that the format above is invalid. I'm thrown off by this format, 
> i.e. inclusion of a node for column names. I'm wondering why the data isn't 
> in the standard format such as this:
> 
>
> 2016
> 2016-02-22
> ...
>   
>   
> 2016
> 2016-02-22
>...
>   
>etc
> 
>
> How do you suggest parsing this - I basically want to shred the data to a 
> SQL Server table. The approach I've used in the past doesn't work with your 
> report structure.
> 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/dd41665f-613b-4fce-8280-bca5712d7dec%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: How can I shred XML report format to a database?

2016-03-04 Thread 'Nadine Sundquist (AdWords API Team)' via AdWords API Forum
Greetings!

So, what you're seeing is the use of XML attributes 
. One of the reasons we 
use it in our tags rather than expanding them into separate tags is because 
it significantly decreases the size of the output coming back, which is a 
performance win for people pulling large reports. In .NET, you can use 
methods off of XmlDocument such as GetElementsByTagName 
 to 
retrieve each of those attributes.

Happy coding,
Nadine, AdWords API Team 

On Friday, March 4, 2016 at 3:12:43 PM UTC-5, Big Daddy Leon wrote:
>
> I'm using the .NET Client Library. AdWords API allows downloading report 
> data in a number of formats. I am using the XML format as illustrated in 
> the sample code:
>
>  ReportDefinition definition = new ReportDefinition()
> {
> reportName = "GENDER_PERFORMANCE_REPORT",
> reportType = 
> ReportDefinitionReportType.GENDER_PERFORMANCE_REPORT,
> downloadFormat = DownloadFormat.XML,
> 
>
> The XML document that is created is of this format:
>
>
> 
> -
>
> 
>
> 
> -
> -
> 
> 
> 
> 
>100 more columns
> 
> 
> 
> 
> 
>
>   currency="USD"/>
>   currency="USD"/>
>   currency="USD"/>
>   currency="USD"/>
>   currency="USD"/>
> etc.
>   
> 
>
> Why is the data in this format? I can't seem to process this using .NET 
> approaches such as XmlDocument(). I tried a couple of XML parsers that 
> complain that the format above is invalid. I'm thrown off by this format, 
> i.e. inclusion of a node for column names. I'm wondering why the data isn't 
> in the standard format such as this:
> 
>
> 2016
> 2016-02-22
> ...
>   
>   
> 2016
> 2016-02-22
>...
>   
>etc
> 
>
> How do you suggest parsing this - I basically want to shred the data to a 
> SQL Server table. The approach I've used in the past doesn't work with your 
> report structure.
> 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/49a81d28-2b56-461e-9892-1d9f5ee6ef99%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Data Issue in AdGroup Performance Report for AdGroupMobileBidModifier

2016-03-04 Thread 'Nadine Sundquist (AdWords API Team)' via AdWords API Forum
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/d402ca23-9bad-4aa0-b057-973ba321783a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Data Issue in AdGroup Performance Report for AdGroupMobileBidModifier

2016-03-04 Thread 'Nadine Sundquist (AdWords API Team)' via AdWords API Forum
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/9eddc8ee-d326-468f-97c7-f59ee2ce8ac9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: RLSA (Remarketing List for Search Ads) and Audience performance report

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

For Google search, your user list must have minimum of 1,000 active 
visitors or users so that targeted adGroup will show ads to visitors or 
users. Please provide me privately the report request and clientCustomerId 
for the Audience Performance Report. Just click *Reply privately to author* in 
the forum when responding.

In the AdWords API, reports and metrics will not have real time data. It 
will be one day old as reports and metrics calculated daily.The report 
statistics (such as clicks, conversions and impressions) are delayed by 
less than three hours and metrics like Impression share, Auction insights, 
Top movers etc. are calculated daily. Please check data freshness 
 document for 
detail information.

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/1d6437c2-ee0d-449a-812a-e5d67809c2f8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: RLSA (Remarketing List for Search Ads) and Audience performance report

2016-03-04 Thread jnewman0817
No, this is a Audience Report related concern. I'm being told I need to 
provide data from a running campaign to see the Audience Report in order to 
comply with RMF. When does Audience Report data exist? I see visitors 
coming from the Remarketing Tag in the RemarketingList, but I see no data 
in the reports. I've tested the API call and nothing comes back except an 
empty data set. Once again, when does Audience Report data exist? Do I need 
to wait 24-48 hours? Is the document '
https://support.google.com/adwords/answer/2472738?hl=en' correct where it 
states that I need 1000 active visitors in the RemarketingList in order for 
the campaign to serve?

On Friday, March 4, 2016 at 4:29:18 PM UTC-5, Umesh Dengale wrote:
>
> Hello,
>
> We support AdWords API related cases. Above case is related to the AdWords 
> product (UI) side. Please post your question in the AdWords community 
> 
>  forum. The 
> product experts there should be able to help out. 
>
> 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/698d1c1d-caf4-42d9-bd14-a50b60659176%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: RLSA (Remarketing List for Search Ads) and Audience performance report

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

We support AdWords API related cases. Above case is related to the AdWords 
product (UI) side. Please post your question in the AdWords community 
 
forum. The 
product experts there should be able to help out. 

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/1eae15f2-bde7-46f0-b415-74f1cd8fa933%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


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

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

You can target Wifi and Mobile Carriers by targeting the Carrier criteria 

 in 
the CampaignCriterionService.

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/756b25ed-4cf9-4230-b055-2a84663d804b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Data Issue in AdGroup Performance Report for AdGroupMobileBidModifier

2016-03-04 Thread suvodhoy sinha


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/44df2859-04f3-4fec-9a48-8029411b4c79%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Data Issue in AdGroup Performance Report for AdGroupMobileBidModifier

2016-03-04 Thread suvodhoy


Hi

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.  Also 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 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/668a020c-d08a-495b-b914-c0d2595cc547%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


How can I shred XML report format to a database?

2016-03-04 Thread Big Daddy Leon
I'm using the .NET Client Library. AdWords API allows downloading report 
data in a number of formats. I am using the XML format as illustrated in 
the sample code:

 ReportDefinition definition = new ReportDefinition()
{
reportName = "GENDER_PERFORMANCE_REPORT",
reportType = 
ReportDefinitionReportType.GENDER_PERFORMANCE_REPORT,
downloadFormat = DownloadFormat.XML,


The XML document that is created is of this format:



-




-
-




   100 more columns











etc.
  


Why is the data in this format? I can't seem to process this using .NET 
approaches such as XmlDocument(). I tried a couple of XML parsers that 
complain that the format above is invalid. I'm thrown off by this format, 
i.e. inclusion of a node for column names. I'm wondering why the data isn't 
in the standard format such as this:

   
2016
2016-02-22
...
  
  
2016
2016-02-22
   ...
  
   etc


How do you suggest parsing this - I basically want to shred the data to a 
SQL Server table. The approach I've used in the past doesn't work with your 
report structure.
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/ceba4fd6-6341-4cd2-b3c9-5ddbd81babce%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


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

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

Here is our C# example 

 on 
how to target Platform criteria. You will need to set the id 
 to the 
appropriate value in the CampaignCriterionService 

.

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/f7959162-f07b-4e5a-a5a4-a63ef6bc2a54%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Is it possible to download Customized Reports from Adwords via API?

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

The AdWords API has these set of reports 
 and could 
be download in these formats 
.
 
Please check out reporting basic guide 
 for more 
details.  

Cheers,
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/1ad4d7f5-4210-4295-9449-4e051ca45b72%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: CampaignCriterionService return empty parentsLocations

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

Could you please send SOAP request and response log? 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/cdd181f1-b276-4415-81de-198ceef02772%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: videos Completed

2016-03-04 Thread kmhussainba
Thank you 


On Thursday, March 3, 2016 at 3:38:18 PM UTC-6, Yin Niu wrote:
>
> Hello,
>
> There aren't metrics that track specifically on video started and 
> completed, but you can use video viewership  
> (also known as 
> "quartile reporting") which gives stats for number of times a video played 
> to 25%, 50%, 75% and 100%. 
>
> 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/db598356-884c-4f57-9b96-83951429b488%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Not Able to Remove Unlnown from Gender

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

Could you be more specific about your issue? 

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/90389709-bc6c-4c0a-8473-fcb6caf22582%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


CampaignCriterionService return empty parentsLocations

2016-03-04 Thread alexander . schlegel
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/5fdab362-6c61-4bc2-bce0-c1d4fbc3c273%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Size of User List Differs from Value Displayed in UI

2016-03-04 Thread alexander.daniel via AdWords API Forum
Hi Yin,

I just resent the message with the SOAP request and the response with *Reply 
privately to author*. Did you get it?

Thanks,
Alex

On Friday, 4 March 2016 16:55:09 UTC+1, Yin Niu wrote:
>
> Hi Alex, 
>
> I am sorry, but I haven't received your reply email. Could you please send 
> the SOAP request and response again? 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/c5f33c65-c92d-468e-a3f9-b521304d2a09%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Size of User List Differs from Value Displayed in UI

2016-03-04 Thread 'Yin Niu' via AdWords API Forum
Hi Alex, 

I am sorry, but I haven't received your reply email. Could you please send 
the SOAP request and response again? 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/a75a3dac-b4c6-4dd7-9bae-7151abedfaef%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Adwords Numericals

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

This question does not appear to be AdWords API related. The AdWords 
Community Forum 
 
seems 
better suited to give a response to this question. You could post your 
question there and you should be able to get a solution.

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/7e563700-135f-46ab-b6ce-64c061ba76ef%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Not Able to Remove Unlnown from Gender

2016-03-04 Thread Joginder Yadav
Can anyone let me know how can I remove the "UNKNOWN" from the gender using 
their C# API?

Thanks in advance

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/b03cbc02-cc80-46b3-ac26-7c086be36087%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Adwords Numericals

2016-03-04 Thread Lovely Tyagi
Have some numerical problems. Could anyone help me with that?
Q. 1. Total no of impr 1000, CTR 1.7% , Impr share - 64%, Find total no of 
click cost?
Q.2. 1st impression is 1000,2nd is 1050, Avg CTR is 1.5%, 2nd CTR is 2.5%. 
Then calculate 1st CTR.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/9a2eaaa9-8609-4871-828e-c84d89b956fa%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Issue in Adding the Device type using c# API

2016-03-04 Thread Joginder Yadav
Can anyone please let me know how can we Set device type - [Mobile, Tablet 
or Desktop] using c# 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/69ca79e9-fafd-4b55-8697-5093c5d35f12%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


How to set network setting like WIfi and 3G?

2016-03-04 Thread Joginder Yadav
How to set network setting like WIfi and 3G?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/3424423e-dd94-4a93-bac6-aa79141664c8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: documentation for types on some reporting fields appears incorrect

2016-03-04 Thread 'Michael Cloonan (AdWords API Team)' via AdWords API Forum
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/8e7970db-598d-4d97-8a04-d3671173d55d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Is it possible to download Customized Reports from Adwords via API?

2016-03-04 Thread MWA


Hi,

 

I have created a custom report in Reports menu of Adwords Account. I want 
to know is it possible to download this report via Adwords API?

 

Thank you in advance.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/cb867e01-f1cd-491d-ac29-ae60a7012c6c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Size of User List Differs from Value Displayed in UI

2016-03-04 Thread alexander.daniel via AdWords API Forum
Hi Yin,

I didn't get any private response yet. Is there something wrong 
communication-wise or are you still investigating?

Thanks,
Alex

On Tuesday, 1 March 2016 16:45:25 UTC+1, Yin Niu wrote:
>
> Hi Alex, 
>
> What is the actual size of the email list that you uploaded? Could you 
> please send the SOAP request and response so that we could look into 
> further? 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/0322f6d3-6519-4ead-a2ab-41c1c4efa4a8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: BatchJobService ProcessingErrors

2016-03-04 Thread Biniam Asnake
Did anybody look at my question. 

Please help. It is very urgent.

On Thursday, March 3, 2016 at 10:54:57 AM UTC+1, Biniam Asnake wrote:
>
> Hello,
>
> I got this error response when making API call using the Java version of 
> BatchJobService and I cannot even identify what kind of exception it is.
>
> What is this exception?
> Why does it happen?
> How can I solve it (If it can be handled and retried from my end)?
>
> Please help ASAP.
>
> Regards,
>
> *Here is the stacktrace*
>
> SOAP Request:
> http://schemas.xmlsoap.org/soap/envelope/"; xmlns:xsd="
> http://www.w3.org/2001/XMLSchema"; xmlns:xsi="
> http://www.w3.org/2001/XMLSchema-instance";>
> 
> https://adwords.google.com/api/adwords/cm/v201509"; soapenv:mustUnderstand=
> "0">
> 166XXX
> Yt >
> MyApp:1.0.0 (AwApi-Java, AdWords-Axis/2.7.0, 
> Common-Java/2.7.0, Axis/1.4, Java/1.8.0_25, maven)
> false
> true
> 
> 
> 
> https://adwords.google.com/api/adwords/cm/v201509";>
> 
> Id
> Status
> DownloadUrl
> ProcessingErrors
> ProgressStats
> 
> Id
> EQUALS
> 3199486
> 
> 
> 
> 
> 
>
> 2016-03-02 18:12:54,007 [AdwordsJobExecutor-default-dispatcher-59] WARN 
> 
> com.google.api.ads.adwords.lib.client.AdWordsServiceClient.soapXmlLogger.logSoapXml([...])
>  
> at Line 84 
> SOAP Response:
>  xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"; xmlns:xsd="http:
> //www.w3.org/2001/XMLSchema" xmlns:xsi="
> http://www.w3.org/2001/XMLSchema-instance";>
> 
> 
> http://xml.apache.org/axis/";>ns1:HTTP<
> /faultcode>
> (0)null
> 
> return code:  0
> 
> http://xml.apache.org/axis/
> ">0
> 
> 
> 
> 
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/f745ad91-a816-445a-97a8-a75222c5e25e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.