Re: UniqueCookies returning "--"

2018-03-05 Thread 'Peter Oliquino' via AdWords API Forum
Hi Yaron,

As per this documentation 
, 
having "--" values indicates that there is no value for that specific field 
or is currently null. However, if you think that this is not the scenario, 
could you provide your clientCustomerId as well so I can further 
investigate? You may reply to me using the *Reply privately to author*
 option.

Best regards,
Peter
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/01251eb5-e0f0-4051-829f-492ef3f258c1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


UniqueCookies returning "--"

2018-03-05 Thread Yaron Rosh
Hi, 
I'm trying to get 'ImpressionReach' metric in CAMPAIGN_PERFORMANCE_REPORT
this is my request:
 obj = {
  startDate: startDate,
  endDate: endDate,
  metrics: 'CampaignName,Impressions,Clicks,Cost,ImpressionReach',
  report: 'CAMPAIGN_PERFORMANCE_REPORT',
  filters: '',
}

ga.awql()
.select(obj.metrics)
.from(obj.report)
.where(obj.filters)
.during('LAST_14_DAYS')
.send().then(function(results) {
  deferred.resolve(results);
})


this is what i get

   1. Array(5)
  1. 0:{campaign: "L -  * - ", 
  impressions: "17059", clicks: "2609", cost: "415230", unique 
  cookies: " --"}
  2. 1:{campaign: "L -  * - ", 
  impressions: "7333041", clicks: "69991", cost: "33243417680", unique 
  cookies: " --"}
  3. 2:{campaign: "L -  * - ", 
  impressions: "13250", clicks: "1498", cost: "414897", unique 
  cookies: " --"}
  4. 3:{campaign: "L -  * - ", 
  impressions: "781", clicks: "178", cost: "8922", unique cookies: " 
  --"}
  5. 4:{campaign: "L -  * - ", 
  impressions: "770527", clicks: "4856", cost: "225130", unique 
  cookies: " --"}
   




what am i doing wrong?

Thanks
Yaron


   1. 
   

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/f9ab1698-8652-49c0-b367-48c29087acdc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: ImpressionReach/ UniqueCookies returning \"--\" for segment by day, all time data, shows correct value in the UI

2016-04-04 Thread 'Nadine Sundquist (AdWords API Team)' via AdWords API Forum
Hi Suchit,

Have you tried picking *All time* in the AdWords user interface? It won't 
give you any values, either. So, if you do *All time* for the user using 
the AdWords API, it won't be any different than the AdWords user interface. 
That should at least set an expectation for the users of your tool that 
what you are displaying and what they are seeing through the AdWords user 
interface is the same.

As for breaking down the calls into smaller intervals, that's a cool, 
creative solution to your problem. Unfortunately, there isn't an easy way 
of knowing what <100 is if you're trying to add up all of the days. There's 
an AdWords Help Center article 
 that has an 
explanation on how the reach is calculated. You may be able to take 
advantage of the mathematical explanation. Check it out here 
.

Hoping that helps,
Nadine, AdWords API Team

On Sunday, April 3, 2016 at 2:39:35 PM UTC-4, Suchit Puri wrote:
>
> Hi Nadine,
>
> So the use case is that the client comes in to Adalyz, he links his 
> adwords account. He then all the analysis, historic and present for his 
> campaigns. Now since its the first time we are fetching the data for him , 
> we fetch the daily data for all time.
>
> Since the Adwords UI shows the unique cookies values, we also need to show 
> it in our tool. Now as you said if we fetch the all time daily data for 
> ImpressionReach/UniqueCookies then we dont get any values. But if we fetch 
> for smaller intervals we might get some values. I will try breaking calls 
> to smaller interval.
>
> Now another problem is that suppose we get UniqueCookies for days as < 100 
> , how do we compute the total unique cookies for that time interval.
>
> Day 1- Unique Cookies = 20
> Day 2- Unique Cookies = < 100
> Day 3 Unique Cookies = 30
> Day 4 Unique Cookies = 30
> Day 5 Unique Cookies = 50
>
> now when show the aggregated values  =* day 1 to day 5 *= 20 + < 100 + 30 
>  + 30 + 30 + 50 = ?
>
>
> Regards
> Suchit
>
>
> On Thu, Mar 31, 2016 at 7:06 PM, 'Nadine Sundquist (AdWords API Team)' via 
> AdWords API Forum  wrote:
>
>> Hello Suchit,
>>
>> That does make sense that you would retrieve that information for all 
>> time when someone is connecting for the first time. Yes, some data such as 
>> "Unique Cookies/Impression Reach" will not be calculated when you choose 
>> *All 
>> time*. That is the case for both our user interface and the API. I only 
>> suggested 14 days because your screenshot showed 14 days. I checked your 
>> account, and that account has data from January 1st of this year to present 
>> for that particular field.
>>
>> Best,
>> Nadine, AdWords API Team
>>
>> On Thursday, March 31, 2016 at 1:18:26 AM UTC-4, Suchit Puri wrote:
>>>
>>> Hi Nadine,
>>>
>>> Thanks for the answer, so we have an analytics tool which is 
>>> importing day wise data for the client from adwords api. Now when the 
>>> client connects is account for the first time we import "all time" data 
>>> segmented by day for him , and there we get “—“ for unique cookies.
>>>
>>> Now once the we get the all time daily data we just fetch only the 
>>> current day data, which seems to work fine.
>>>
>>> Now are you suggesting that All Time segment by day will now show the 
>>> correct “UniqueCookies/ImpressionReach” and we should fetch only 14 days of 
>>> data ?
>>>
>>>
>>> Thanks
>>> Suchit Puri
>>>
>>>
>>> On Thu, 31 Mar 2016 at 1:51 AM "'Nadine Sundquist (AdWords API Team)' 
>>> via AdWords API Forum" <">"'Nadine Sundquist (AdWords API Team)' via 
>>> AdWords API Forum" > wrote:
>>>
 Hi Suchit,

 Thanks for providing the screenshots and the report. I noticed that in 
 the AdWords user interface you chose *last 14 days*, while in the API 
 you chose *ALL_TIME*. If you change your choice in the AdWords user 
 interface to be *All Time*, you'll notice that you now get back *'--'* for 
 everything, which matches your API request. When you choose *All time* for 
 any request to AdWords, some fields will not be calculated for various 
 reasons such as processing time to calculate the request. You could also 
 change your API request to say *LAST_14_DAYS* to match your AdWords 
 user interface request. When you do that in your API request, you'll start 
 getting back numbers just like in the AdWords user interface.

 Cheers,
 Nadine, AdWords API Team 

 On Wednesday, March 30, 2016 at 8:05:57 AM UTC-4, Suchit Puri wrote:
>
> Hi Yi,
> I have sent you the report definition in private reply.
>
> The question still remains the same. The ImpressionReach is coming as 
> '--" when you pull a simple reports from the UI or pull it from the API. 
> But the UI shows correct values.
>  
>
> Regards
> Suchit Puri
>
> On Tuesday, March 29, 2016 at 7:07:07 PM UTC+5:30, Yin 

Re: ImpressionReach/ UniqueCookies returning \"--\" for segment by day, all time data, shows correct value in the UI

2016-04-03 Thread Suchit Puri
Hi Nadine,

So the use case is that the client comes in to Adalyz, he links his adwords
account. He then all the analysis, historic and present for his campaigns.
Now since its the first time we are fetching the data for him , we fetch
the daily data for all time.

Since the Adwords UI shows the unique cookies values, we also need to show
it in our tool. Now as you said if we fetch the all time daily data for
ImpressionReach/UniqueCookies then we dont get any values. But if we fetch
for smaller intervals we might get some values. I will try breaking calls
to smaller interval.

Now another problem is that suppose we get UniqueCookies for days as < 100
, how do we compute the total unique cookies for that time interval.

Day 1- Unique Cookies = 20
Day 2- Unique Cookies = < 100
Day 3 Unique Cookies = 30
Day 4 Unique Cookies = 30
Day 5 Unique Cookies = 50

now when show the aggregated values  =* day 1 to day 5 *= 20 + < 100 + 30
 + 30 + 30 + 50 = ?


Regards
Suchit


On Thu, Mar 31, 2016 at 7:06 PM, 'Nadine Sundquist (AdWords API Team)' via
AdWords API Forum  wrote:

> Hello Suchit,
>
> That does make sense that you would retrieve that information for all time
> when someone is connecting for the first time. Yes, some data such as
> "Unique Cookies/Impression Reach" will not be calculated when you choose *All
> time*. That is the case for both our user interface and the API. I only
> suggested 14 days because your screenshot showed 14 days. I checked your
> account, and that account has data from January 1st of this year to present
> for that particular field.
>
> Best,
> Nadine, AdWords API Team
>
> On Thursday, March 31, 2016 at 1:18:26 AM UTC-4, Suchit Puri wrote:
>>
>> Hi Nadine,
>>
>> Thanks for the answer, so we have an analytics tool which is
>> importing day wise data for the client from adwords api. Now when the
>> client connects is account for the first time we import "all time" data
>> segmented by day for him , and there we get “—“ for unique cookies.
>>
>> Now once the we get the all time daily data we just fetch only the
>> current day data, which seems to work fine.
>>
>> Now are you suggesting that All Time segment by day will now show the
>> correct “UniqueCookies/ImpressionReach” and we should fetch only 14 days of
>> data ?
>>
>>
>> Thanks
>> Suchit Puri
>>
>>
>> On Thu, 31 Mar 2016 at 1:51 AM "'Nadine Sundquist (AdWords API Team)' via
>> AdWords API Forum" <">"'Nadine Sundquist (AdWords API Team)' via AdWords
>> API Forum" > wrote:
>>
>>> Hi Suchit,
>>>
>>> Thanks for providing the screenshots and the report. I noticed that in
>>> the AdWords user interface you chose *last 14 days*, while in the API
>>> you chose *ALL_TIME*. If you change your choice in the AdWords user
>>> interface to be *All Time*, you'll notice that you now get back *'--'* for
>>> everything, which matches your API request. When you choose *All time* for
>>> any request to AdWords, some fields will not be calculated for various
>>> reasons such as processing time to calculate the request. You could also
>>> change your API request to say *LAST_14_DAYS* to match your AdWords
>>> user interface request. When you do that in your API request, you'll start
>>> getting back numbers just like in the AdWords user interface.
>>>
>>> Cheers,
>>> Nadine, AdWords API Team
>>>
>>> On Wednesday, March 30, 2016 at 8:05:57 AM UTC-4, Suchit Puri wrote:

 Hi Yi,
 I have sent you the report definition in private reply.

 The question still remains the same. The ImpressionReach is coming as
 '--" when you pull a simple reports from the UI or pull it from the API.
 But the UI shows correct values.


 Regards
 Suchit Puri

 On Tuesday, March 29, 2016 at 7:07:07 PM UTC+5:30, Yin Niu wrote:
>
> Hi Suchit,
>
> Could you please send me the report definition and the
> clientCustomerID? I am not able to find "Interaction Types" field in 
> Campaign
> Performance Report
> 
>  fields
> list.
>
> For impressionReach
> ,
> "<100" is special value when the number of cookes is less than 100. Notice
> that ImpressionReach field is not compatible with ClickType
> 
> .
>
> 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" 

Re: ImpressionReach/ UniqueCookies returning \"--\" for segment by day, all time data, shows correct value in the UI

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

That does make sense that you would retrieve that information for all time 
when someone is connecting for the first time. Yes, some data such as 
"Unique Cookies/Impression Reach" will not be calculated when you choose *All 
time*. That is the case for both our user interface and the API. I only 
suggested 14 days because your screenshot showed 14 days. I checked your 
account, and that account has data from January 1st of this year to present 
for that particular field.

Best,
Nadine, AdWords API Team

On Thursday, March 31, 2016 at 1:18:26 AM UTC-4, Suchit Puri wrote:
>
> Hi Nadine,
>
> Thanks for the answer, so we have an analytics tool which is importing day 
> wise data for the client from adwords api. Now when the client connects is 
> account for the first time we import "all time" data segmented by day for 
> him , and there we get “—“ for unique cookies.
>
> Now once the we get the all time daily data we just fetch only the current 
> day data, which seems to work fine.
>
> Now are you suggesting that All Time segment by day will now show the 
> correct “UniqueCookies/ImpressionReach” and we should fetch only 14 days of 
> data ?
>
>
> Thanks
> Suchit Puri
>
>
> On Thu, 31 Mar 2016 at 1:51 AM "'Nadine Sundquist (AdWords API Team)' via 
> AdWords API Forum" <">"'Nadine Sundquist (AdWords API Team)' via AdWords 
> API Forum" > wrote:
>
>> Hi Suchit,
>>
>> Thanks for providing the screenshots and the report. I noticed that in 
>> the AdWords user interface you chose *last 14 days*, while in the API 
>> you chose *ALL_TIME*. If you change your choice in the AdWords user 
>> interface to be *All Time*, you'll notice that you now get back *'--'* for 
>> everything, which matches your API request. When you choose *All time* for 
>> any request to AdWords, some fields will not be calculated for various 
>> reasons such as processing time to calculate the request. You could also 
>> change your API request to say *LAST_14_DAYS* to match your AdWords user 
>> interface request. When you do that in your API request, you'll start 
>> getting back numbers just like in the AdWords user interface.
>>
>> Cheers,
>> Nadine, AdWords API Team 
>>
>> On Wednesday, March 30, 2016 at 8:05:57 AM UTC-4, Suchit Puri wrote:
>>>
>>> Hi Yi,
>>> I have sent you the report definition in private reply.
>>>
>>> The question still remains the same. The ImpressionReach is coming as 
>>> '--" when you pull a simple reports from the UI or pull it from the API. 
>>> But the UI shows correct values.
>>>  
>>>
>>> Regards
>>> Suchit Puri
>>>
>>> On Tuesday, March 29, 2016 at 7:07:07 PM UTC+5:30, Yin Niu wrote:

 Hi Suchit, 

 Could you please send me the report definition and the 
 clientCustomerID? I am not able to find "Interaction Types" field in 
 Campaign 
 Performance Report 
 
  fields 
 list. 

 For impressionReach 
 ,
  
 "<100" is special value when the number of cookes is less than 100. Notice 
 that ImpressionReach field is not compatible with ClickType 
 
 . 

 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/dd7eeb8f-c375-401b-8468-868dd0db990f%40googlegroups.com
>>  
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>

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

Re: ImpressionReach/ UniqueCookies returning \"--\" for segment by day, all time data, shows correct value in the UI

2016-03-30 Thread Suchit Puri
Hi 

Nadine,

Thanks for the answer, so we have an analytics tool which is importing day wise 
data for the client from adwords api. Now when the client connects is account 
for the first time we import "all time" data segmented by day for him , and 
there we get “—“ for unique cookies.

Now once the we get the all time daily data we just fetch only the current day 
data, which seems to work fine.

Now are you suggesting that All Time segment by day will now show the correct 
“UniqueCookies/ImpressionReach” and we should fetch only 14 days of data ?

Thanks

Suchit Puri

On Thu, 31 Mar 2016 at 1:51 AM "'Nadine Sundquist (AdWords API Team)' via 
AdWords API Forum"

<
mailto:
> wrote:

Hi 

Suchit,

Thanks for providing the screenshots and the report. I noticed that in the 
AdWords user interface you chose

last 14 days

, while in the API you chose

ALL_TIME

. If you change your choice in the AdWords user interface to be

All Time

, you'll notice that you now get back

'--'

 for everything, which matches your API request. When you choose

All time

 for any request to AdWords, some fields will not be calculated for various 
reasons such as processing time to calculate the request. You could also change 
your API request to say

LAST_14_DAYS

to match your AdWords user interface request. When you do that in your API 
request, you'll start getting back numbers just like in the AdWords user 
interface.

Cheers,

Nadine, AdWords API Team 

On Wednesday, March 30, 2016 at 8:05:57 AM UTC-4, Suchit Puri wrote:

Hi Yi,

I have sent you the report definition in private reply.

The question still remains the same. The ImpressionReach is coming as '--" when 
you pull a simple reports from the UI or pull it from the API. But the UI shows 
correct values.

 

Regards

Suchit Puri

On Tuesday, March 29, 2016 at 7:07:07 PM UTC+5:30, Yin Niu wrote:

Hi Suchit, 

Could you please send me the report definition and the clientCustomerID? I am 
not able to find "Interaction Types" field in 
https://developers.google.com/adwords/api/docs/appendix/reports/v201601/campaign-performance-report
 fields list. 

For 
https://developers.google.com/adwords/api/docs/appendix/reports/v201601/campaign-performance-report#impressionreach
, "<100" is special value when the number of cookes is less than 100. Notice 
that ImpressionReach field is not compatible with 
https://developers.google.com/adwords/api/docs/appendix/reports/v201601/campaign-performance-report#clicktype
. 

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
mailto: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/dd7eeb8f-c375-401b-8468-868dd0db990f%40googlegroups.com?utm_medium=email_source=footer
.

For more options, visit
https://groups.google.com/d/optout
.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/56fcb1f4c9360768%40polymail.io.
For more options, visit https://groups.google.com/d/optout.


Re: ImpressionReach/ UniqueCookies returning "--" for segment by day, all time data, shows correct value in the UI

2016-03-30 Thread 'Nadine Sundquist (AdWords API Team)' via AdWords API Forum
Hi Suchit,

Thanks for providing the screenshots and the report. I noticed that in the 
AdWords user interface you chose *last 14 days*, while in the API you chose 
*ALL_TIME*. If you change your choice in the AdWords user interface to be *All 
Time*, you'll notice that you now get back *'--'* for everything, which 
matches your API request. When you choose *All time* for any request to 
AdWords, some fields will not be calculated for various reasons such as 
processing time to calculate the request. You could also change your API 
request to say *LAST_14_DAYS* to match your AdWords user interface request. 
When you do that in your API request, you'll start getting back numbers 
just like in the AdWords user interface.

Cheers,
Nadine, AdWords API Team 

On Wednesday, March 30, 2016 at 8:05:57 AM UTC-4, Suchit Puri wrote:
>
> Hi Yi,
> I have sent you the report definition in private reply.
>
> The question still remains the same. The ImpressionReach is coming as '--" 
> when you pull a simple reports from the UI or pull it from the API. But the 
> UI shows correct values.
>  
>
> Regards
> Suchit Puri
>
> On Tuesday, March 29, 2016 at 7:07:07 PM UTC+5:30, Yin Niu wrote:
>>
>> Hi Suchit, 
>>
>> Could you please send me the report definition and the clientCustomerID? 
>> I am not able to find "Interaction Types" field in Campaign Performance 
>> Report 
>> 
>>  fields 
>> list. 
>>
>> For impressionReach 
>> ,
>>  
>> "<100" is special value when the number of cookes is less than 100. Notice 
>> that ImpressionReach field is not compatible with ClickType 
>> 
>> . 
>>
>> 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/dd7eeb8f-c375-401b-8468-868dd0db990f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: ImpressionReach/ UniqueCookies returning "--" for segment by day, all time data, shows correct value in the UI

2016-03-30 Thread Suchit Puri
Hi Yi,
I have sent you the report definition in private reply.

The question still remains the same. The ImpressionReach is coming as '--" 
when you pull a simple reports from the UI or pull it from the API. But the 
UI shows correct values.
 

Regards
Suchit Puri

On Tuesday, March 29, 2016 at 7:07:07 PM UTC+5:30, Yin Niu wrote:
>
> Hi Suchit, 
>
> Could you please send me the report definition and the clientCustomerID? I 
> am not able to find "Interaction Types" field in Campaign Performance 
> Report 
> 
>  fields 
> list. 
>
> For impressionReach 
> ,
>  
> "<100" is special value when the number of cookes is less than 100. Notice 
> that ImpressionReach field is not compatible with ClickType 
> 
> . 
>
> 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/a2ff6e63-c513-4f51-a1ab-0b1354f4b2c7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: ImpressionReach/ UniqueCookies returning "--" for segment by day, all time data, shows correct value in the UI

2016-03-30 Thread Suchit Puri
Hi Yi,
I have sent you the report definition in private reply.

 The question still remains the same. The ImpressionReach is coming as '--" 
when you pull a simple reports from the UI or pull it from the API. But the 
UI shows correct values.
A

On Tuesday, March 29, 2016 at 7:07:07 PM UTC+5:30, Yin Niu wrote:
>
> Hi Suchit, 
>
> Could you please send me the report definition and the clientCustomerID? I 
> am not able to find "Interaction Types" field in Campaign Performance 
> Report 
> 
>  fields 
> list. 
>
> For impressionReach 
> ,
>  
> "<100" is special value when the number of cookes is less than 100. Notice 
> that ImpressionReach field is not compatible with ClickType 
> 
> . 
>
> 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/44ecc605-167c-4491-b42f-ba7d8ca101e0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: ImpressionReach/ UniqueCookies returning "--" for segment by day, all time data, shows correct value in the UI

2016-03-30 Thread Suchit Puri

Here is the report definition

https://adwords.google.com/api/adwords/cm/v201509;>
  
 AccountCurrencyCode 
 CampaignId 
 TotalCost 
 TotalBudget 
 Amount 
 CampaignName 
 CampaignStatus 
 Period 
 AccountDescriptiveName 
 AverageCpc 
 AverageCpm 
 Impressions 
 AdvertisingChannelType 
 AdvertisingChannelSubType 
 ImpressionReach 
 Clicks 
 CostPerConvertedClick 
 ClickConversionRate 
 ConvertedClicks 
 StartDate 
 EndDate 
 Date 
  
  CAMPAIGN_PERFORMANCE_REPORT
  ALL_TIME
  xml


The client customer id, 4840333705.


Please note that ImpressionReach is the problematic fields which maps to 
UniqueCookies in the response.

Thanks
Suchit


On Tuesday, March 29, 2016 at 7:07:07 PM UTC+5:30, Yin Niu wrote:
>
> Hi Suchit, 
>
> Could you please send me the report definition and the clientCustomerID? I 
> am not able to find "Interaction Types" field in Campaign Performance 
> Report 
> 
>  fields 
> list. 
>
> For impressionReach 
> ,
>  
> "<100" is special value when the number of cookes is less than 100. Notice 
> that ImpressionReach field is not compatible with ClickType 
> 
> . 
>
> 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/0bab09fa-5959-4c7c-a730-bdd6c34a5fcd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: ImpressionReach/ UniqueCookies returning "--" for segment by day, all time data, shows correct value in the UI

2016-03-29 Thread 'Yin Niu' via AdWords API Forum
Hi Suchit, 

Could you please send me the report definition and the clientCustomerID? I 
am not able to find "Interaction Types" field in Campaign Performance Report 

 fields 
list. 

For impressionReach 
,
 
"<100" is special value when the number of cookes is less than 100. Notice 
that ImpressionReach field is not compatible with ClickType 

. 

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/e4bbb862-a4a3-4c2d-a968-e2e23355399d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: ImpressionReach/ UniqueCookies returning "--" for segment by day, all time data, shows correct value in the UI

2016-03-29 Thread Suchit Puri


Hi Yin,

Pasting the UI and report screenshots here.

if you see in the below screenshots you will see that the UI is getting the 
data for "*UniqueCookies*: column for *last 14 days*, i have added a *segment 
by day.*




Now  when i download the *all time report segmented by day *for the same 
campaign from the *UI or API* i get the attached CSV. If you look in the 
CSV you will see that all the *UniqueCookies, attribute* values are "--" 
instead of actual values.





Please let me know if you need any other data points.

Thanks
Suchit

On Monday, March 28, 2016 at 7:23:25 PM UTC+5:30, Yin Niu wrote:
>
> Hi Suchit, 
>
> Could you please send the report definition and the reports to show the 
> difference between API and UI? 
>
> For the data points that return <100, which field are you referring to? 
>
> 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/7e9b8841-0753-478b-9844-f16b78a92159%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Campaign report (All Time)			
Day	Campaign state	Campaign	Status	Impressions	Interactions	Interaction Types	Interaction Rate	Avg. Cost	Cost	Unique cookies	Avg. impr. freq. per cookie
19/01/16	enabled	Adalyz - Display	eligible	657	5	Clicks	0.76%	0.39	1.96	 --	0
08/02/16	enabled	Adalyz - Display	eligible	2040	10	Clicks	0.49%	0.16	1.62	 --	0
10/02/16	enabled	Adalyz - Display	eligible	2503	9	Clicks	0.36%	0.17	1.52	 --	0
12/02/16	enabled	Adalyz - Display	eligible	4194	9	Clicks	0.21%	0.14	1.24	 --	0
17/02/16	enabled	Adalyz - Display	eligible	1470	9	Clicks	0.61%	0.19	1.74	 --	0
24/02/16	enabled	Adalyz - Display	eligible	5318	38	Clicks	0.71%	0.23	8.9	 --	0
07/03/16	enabled	Adalyz - Display	eligible	1428	9	Clicks	0.63%	0.25	2.21	 --	0
09/03/16	enabled	Adalyz - Display	eligible	1679	6	Clicks	0.36%	0.19	1.15	 --	0
11/03/16	enabled	Adalyz - Display	eligible	1553	7	Clicks	0.45%	0.19	1.3	 --	0
21/03/16	enabled	Adalyz - Display	eligible	769	6	Clicks	0.78%	0.22	1.31	 --	0
26/03/16	enabled	Adalyz - Display	eligible	1595	4	Clicks	0.25%	0.26	1.05	 --	0
28/03/16	enabled	Adalyz - Display	eligible	678	4	Clicks	0.59%	0.51	2.05	 --	0
22/01/16	enabled	Adalyz - Display	eligible	1721	10	Clicks	0.58%	0.16	1.6	 --	0
05/02/16	enabled	Adalyz - Display	eligible	2495	17	Clicks	0.68%	0.18	3.11	 --	0
06/02/16	enabled	Adalyz - Display	eligible	2072	12	Clicks	0.58%	0.2	2.41	 --	0
16/02/16	enabled	Adalyz - Display	eligible	899	6	Clicks	0.67%	0.18	1.09	 --	0
21/02/16	enabled	Adalyz - Display	eligible	1930	17	Clicks	0.88%	0.26	4.4	 --	0
22/02/16	enabled	Adalyz - Display	eligible	2702	19	Clicks	0.70%	0.16	2.96	 --	0
28/02/16	enabled	Adalyz - Display	eligible	1058	5	Clicks	0.47%	0.24	1.21	 --	0
13/03/16	enabled	Adalyz - Display	eligible	1940	4	Clicks	0.21%	0.1	0.38	 --	0
14/03/16	enabled	Adalyz - Display	eligible	1755	9	Clicks	0.51%	0.16	1.46	 --	0
22/03/16	enabled	Adalyz - Display	eligible	1908	5	Clicks	0.26%	0.28	1.4	 --	0
25/03/16	enabled	Adalyz - Display	eligible	277	2	Clicks	0.72%	0.44	0.89	 --	0
16/01/16	enabled	Adalyz - Display	eligible	2866	17	Clicks	0.59%	0.28	4.74	 --	0
25/01/16	enabled	Adalyz - Display	eligible	1029	6	Clicks	0.58%	0.36	2.19	 --	0
26/01/16	enabled	Adalyz - Display	eligible	1939	6	Clicks	0.31%	0.22	1.32	 --	0
29/01/16	enabled	Adalyz - Display	eligible	1118	4	Clicks	0.36%	0.54	2.16	 --	0
04/02/16	enabled	Adalyz - Display	eligible	1951	12	Clicks	0.62%	0.27	3.23	 --	0
19/02/16	enabled	Adalyz - Display	eligible	6121	42	Clicks	0.69%	0.19	8.1	 --	0
27/02/16	enabled	Adalyz - Display	eligible	1448	6	Clicks	0.41%	0.17	1.01	 --	0
04/03/16	enabled	Adalyz - Display	eligible	3177	14	Clicks	0.44%	0.19	2.66	 --	0
05/03/16	enabled	Adalyz - Display	eligible	3365	20	Clicks	0.59%	0.23	4.68	 --	0
08/03/16	enabled	Adalyz - Display	

Re: ImpressionReach/ UniqueCookies returning "--" for segment by day, all time data, shows correct value in the UI

2016-03-28 Thread 'Yin Niu' via AdWords API Forum
Hi Suchit, 

Could you please send the report definition and the reports to show the 
difference between API and UI? 

For the data points that return <100, which field are you referring to? 

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/a3d4f4ea-2871-4add-a7d4-6817dbf27a73%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


ImpressionReach/ UniqueCookies returning "--" for segment by day, all time data, shows correct value in the UI

2016-03-26 Thread Suchit Puri
Hi ,

We are using the adwords api version 509 to fetch the impressionReach / 
UniqueCookies to show the unique users who saw the campaign. The problem is 
that the adwords UI is giving us the exact values but the CSV report/ API 
is giving US "--" when we fetch the all Time report as well as segment by 
day data.

Can you guys tell whats happening here, is this a bug in the api ?


Another question is that for some data points it returns < 100 but in total 
it computes the correct total, so how should we compute the daily sum of < 
100 data points on our end ?

Cheers
Suchit

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/7ee2fb8a-b156-4e2c-a39b-47a18056883a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.