Re: PAID_ORGANIC_QUERY_REPORT

2018-12-04 Thread 'Bharani Cherukuri (AdWords API Team)' via AdWords API and Google Ads API Forum
Hello Alejandro, 

Could you share us the client customer Id, so I can take a look? You can 
share the details privately using Reply privately to author option. 

Thanks,
Bharani, AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
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/b2dc7d37-af4f-405a-b926-64f5621b1077%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


PAID_ORGANIC_QUERY_REPORT

2018-12-04 Thread Alejandro Brücher
I have 2 accounts.
one return data , but he other no. (both with publicity)
why?
this is the code.
---
  client = adwords.AdWordsClient.LoadFromStorage(Archivo)
  # Initialize appropriate service.
  report_downloader = client.GetReportDownloader(version='v201809')
  fecha=20181201+','+20181204
  # Create report query.
  report_query = (adwords.ReportQueryBuilder()
  
.Select('Month','CampaignName','AdGroupName','KeywordTextMatchingQuery','SearchQuery','Clicks','AveragePosition','AverageCpc','Ctr','Impressions'
 
,'OrganicImpressions','OrganicClicks','OrganicAveragePosition','CombinedAdsOrganicClicks')
  .From('PAID_ORGANIC_QUERY_REPORT')
 .During(fecha)
  #.WHERE('DATE=20181105')
  .Build())

  var=report_downloader.DownloadReportAsStringWithAwql(report_query, 'CSV',
skip_report_header=True, 
skip_column_header=False,skip_report_summary=True)
  

  var1=StringIO(var)
  df = pd.read_csv(var1, sep=",")

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
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/6499bc25-14ae-4022-b6bb-9eeab5448794%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Paid_Organic_Query_Report

2015-01-29 Thread Danial Klimkin
Hello Paul,


Could you please start a new thread on the issue? Please let us know the 
exact report definition and target account ID so we could reproduce.

I am closing this thread as it's almost a year old.


-Danial, AdWords API Team.


On Wednesday, January 28, 2015 at 9:33:32 PM UTC+3, Paul Ingles wrote:
>
> Hi,
>
> I've just started experimenting with this new report and am seeing some 
> interesting data for CombinedAdsOrganicClicksPerQuery and 
> OrganicClicksPerQuery: both seem to be expressed as percentages rather than 
> doubles? I'm downloading the report as a gzipped CSV through the Java SDK 
> (if that helps).
>
> OrganicImpressionsPerQuery is definitely expressed as a double though.
>
> Have I done something silly or is this a known issue? I can't seem to find 
> anything relating specifically to those fields.
>
>
> On Tuesday, 25 March 2014 22:37:38 UTC, Ray Tsang (AdWords API Team) wrote:
>>
>> Johannes,
>>
>> Actually - good news.  The columns are now available.  Please use the 
>> ReportDefinitionService to retrieve the latest set of columns, that 
>> contains:
>>
>>- OrganicClicks (Long)
>>- OrganicClicksPerQuery (Double)
>>- OrganicImpressions (Long)
>>- OrganicImpressionsPerQuery (Double)
>>- OrganicQueries (Long)
>>
>> We'll update the documents accordingly.
>>
>> Cheers,
>>
>> On Tuesday, March 25, 2014 5:47:49 PM UTC-4, Ray Tsang (AdWords API Team) 
>> wrote:
>>>
>>> Johannes,
>>>
>>> It appears that some of the organic stats are not currently available in 
>>> the report.  I've filed a feature request for this.  I will let you know 
>>> once it's available.
>>>
>>> Thanks!
>>>
>>> Ray
>>>
>>> On Tuesday, March 25, 2014 8:45:42 AM UTC-4, Jóhannes Vollertsen wrote:

 Hi Ray, 
 I am just curious if there is any updates on this issue, as it's been 
 nearly 2 weeks since your last update.

 Cheers!

 Den torsdag den 13. marts 2014 19.58.56 UTC+1 skrev Ray Tsang (AdWords 
 API Team):
>
> Johannes,
>
> I've been looking into this to make sure I provide a useful response. 
>  Thank you for your patience.  I'll get back to you once I track this 
> down.
>
> Thanks!
>
> On Monday, March 10, 2014 7:13:44 AM UTC-4, Jóhannes Vollertsen wrote:
>>
>> I am working on implementing the paid organic reports via the api, to 
>> replace reports generated through the adwords interface. The api report 
>> definition (
>> https://developers.google.com/adwords/api/docs/appendix/reports#paid-organic)
>>  
>> seems to be missing a lot of the columns that are available through the 
>> adwords reports interface. All the organic columns such as "Organic 
>> Clicks", "Organic Queries", "Combined Clicks" etc are not mentioned at 
>> all, 
>> and I was wondering if there is a way to access those via the api. 
>>
>> This report does not make a lot of sense without these columns, so my 
>> questions is:
>>
>> Is there a way to access the missing columns today, and if not, when 
>> will they be accessible thorugh the API?
>>
>
> *uSwitch is a trading name of uSwitch Ltd. Registered in **England and 
> Wales **(Company No. 03612689). Registered Address: **Notcutt House, 36 
> Southwark Bridge Road, London, SE1 9EU*
>
> *This communication and any attachments contains information which is 
> confidential and may be subject to legal privilege. It is for intended 
> recipients only. If you are not the intended recipient you must not copy, 
> distribute, publish, rely on or otherwise use it without our consent. Some 
> of our communications may contain confidential information which it could 
> be a criminal offence for you to disclose or use without authority. If you 
> have received this email in error please notify the sender immediately and 
> delete the email from your computer.*
>
> *uSwitch Ltd reserves the right to monitor all email communications for 
> compliance with legal, regulatory and professional standards.*
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google

Re: Paid_Organic_Query_Report

2015-01-28 Thread Paul Ingles
Hi,

I've just started experimenting with this new report and am seeing some 
interesting data for CombinedAdsOrganicClicksPerQuery and 
OrganicClicksPerQuery: both seem to be expressed as percentages rather than 
doubles? I'm downloading the report as a gzipped CSV through the Java SDK 
(if that helps).

OrganicImpressionsPerQuery is definitely expressed as a double though.

Have I done something silly or is this a known issue? I can't seem to find 
anything relating specifically to those fields.


On Tuesday, 25 March 2014 22:37:38 UTC, Ray Tsang (AdWords API Team) wrote:
>
> Johannes,
>
> Actually - good news.  The columns are now available.  Please use the 
> ReportDefinitionService to retrieve the latest set of columns, that 
> contains:
>
>- OrganicClicks (Long)
>- OrganicClicksPerQuery (Double)
>- OrganicImpressions (Long)
>- OrganicImpressionsPerQuery (Double)
>- OrganicQueries (Long)
>
> We'll update the documents accordingly.
>
> Cheers,
>
> On Tuesday, March 25, 2014 5:47:49 PM UTC-4, Ray Tsang (AdWords API Team) 
> wrote:
>>
>> Johannes,
>>
>> It appears that some of the organic stats are not currently available in 
>> the report.  I've filed a feature request for this.  I will let you know 
>> once it's available.
>>
>> Thanks!
>>
>> Ray
>>
>> On Tuesday, March 25, 2014 8:45:42 AM UTC-4, Jóhannes Vollertsen wrote:
>>>
>>> Hi Ray, 
>>> I am just curious if there is any updates on this issue, as it's been 
>>> nearly 2 weeks since your last update.
>>>
>>> Cheers!
>>>
>>> Den torsdag den 13. marts 2014 19.58.56 UTC+1 skrev Ray Tsang (AdWords 
>>> API Team):

 Johannes,

 I've been looking into this to make sure I provide a useful response. 
  Thank you for your patience.  I'll get back to you once I track this down.

 Thanks!

 On Monday, March 10, 2014 7:13:44 AM UTC-4, Jóhannes Vollertsen wrote:
>
> I am working on implementing the paid organic reports via the api, to 
> replace reports generated through the adwords interface. The api report 
> definition (
> https://developers.google.com/adwords/api/docs/appendix/reports#paid-organic)
>  
> seems to be missing a lot of the columns that are available through the 
> adwords reports interface. All the organic columns such as "Organic 
> Clicks", "Organic Queries", "Combined Clicks" etc are not mentioned at 
> all, 
> and I was wondering if there is a way to access those via the api. 
>
> This report does not make a lot of sense without these columns, so my 
> questions is:
>
> Is there a way to access the missing columns today, and if not, when 
> will they be accessible thorugh the API?
>

-- 
*uSwitch is a trading name of uSwitch Ltd. Registered in **England and 
Wales **(Company No. 03612689). Registered Address: **Notcutt House, 36 
Southwark Bridge Road, London, SE1 9EU*

*This communication and any attachments contains information which is 
confidential and may be subject to legal privilege. It is for intended 
recipients only. If you are not the intended recipient you must not copy, 
distribute, publish, rely on or otherwise use it without our consent. Some 
of our communications may contain confidential information which it could 
be a criminal offence for you to disclose or use without authority. If you 
have received this email in error please notify the sender immediately and 
delete the email from your computer.*

*uSwitch Ltd reserves the right to monitor all email communications for 
compliance with legal, regulatory and professional standards.*

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/9ff09a9f-28a9-4a0f-ad3d-343fff730ae2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: PAID_ORGANIC_QUERY_REPORT vs AD_PERFORMANCE_REPORT Problem

2014-05-02 Thread apiapi
Yes, business side folks led me to believe there was data. There is not. 
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.
For more options, visit https://groups.google.com/d/optout.


Re: PAID_ORGANIC_QUERY_REPORT vs AD_PERFORMANCE_REPORT Problem

2014-05-02 Thread Ray Tsang (AdWords API Team)
Could I trouble you to send the query that you've used, and which CID?

If there are no data, and not an error, it's very likely that no data is 
present in the system at the moment.  You could also verify this in the 
AdWords UI to see if a corresponding report there has any data.

Thanks,

Ray

On Thursday, May 1, 2014 11:29:42 PM UTC-4, apiapi wrote:
>
> Using v17 of the .NET library, I have downlaoded Ad Performance Report 
> data. I then used the same client and adgroups for the Paid Organic Query 
> report and received no data. 
>
> What could cause this kind of issue?
>
> 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.
For more options, visit https://groups.google.com/d/optout.


PAID_ORGANIC_QUERY_REPORT vs AD_PERFORMANCE_REPORT Problem

2014-05-01 Thread apiapi
Using v17 of the .NET library, I have downlaoded Ad Performance Report 
data. I then used the same client and adgroups for the Paid Organic Query 
report and received no data. 

What could cause this kind of issue?

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.
For more options, visit https://groups.google.com/d/optout.


Re: Paid_Organic_Query_Report

2014-03-26 Thread Jóhannes Vollertsen
That is great news! Thanks for the good support.

Den tirsdag den 25. marts 2014 23.37.38 UTC+1 skrev Ray Tsang (AdWords API 
Team):
>
> Johannes,
>
> Actually - good news.  The columns are now available.  Please use the 
> ReportDefinitionService to retrieve the latest set of columns, that 
> contains:
>
>- OrganicClicks (Long)
>- OrganicClicksPerQuery (Double)
>- OrganicImpressions (Long)
>- OrganicImpressionsPerQuery (Double)
>- OrganicQueries (Long)
>
> We'll update the documents accordingly.
>
> Cheers,
>
> On Tuesday, March 25, 2014 5:47:49 PM UTC-4, Ray Tsang (AdWords API Team) 
> wrote:
>>
>> Johannes,
>>
>> It appears that some of the organic stats are not currently available in 
>> the report.  I've filed a feature request for this.  I will let you know 
>> once it's available.
>>
>> Thanks!
>>
>> Ray
>>
>> On Tuesday, March 25, 2014 8:45:42 AM UTC-4, Jóhannes Vollertsen wrote:
>>>
>>> Hi Ray, 
>>> I am just curious if there is any updates on this issue, as it's been 
>>> nearly 2 weeks since your last update.
>>>
>>> Cheers!
>>>
>>> Den torsdag den 13. marts 2014 19.58.56 UTC+1 skrev Ray Tsang (AdWords 
>>> API Team):

 Johannes,

 I've been looking into this to make sure I provide a useful response. 
  Thank you for your patience.  I'll get back to you once I track this down.

 Thanks!

 On Monday, March 10, 2014 7:13:44 AM UTC-4, Jóhannes Vollertsen wrote:
>
> I am working on implementing the paid organic reports via the api, to 
> replace reports generated through the adwords interface. The api report 
> definition (
> https://developers.google.com/adwords/api/docs/appendix/reports#paid-organic)
>  
> seems to be missing a lot of the columns that are available through the 
> adwords reports interface. All the organic columns such as "Organic 
> Clicks", "Organic Queries", "Combined Clicks" etc are not mentioned at 
> all, 
> and I was wondering if there is a way to access those via the api. 
>
> This report does not make a lot of sense without these columns, so my 
> questions is:
>
> Is there a way to access the missing columns today, and if not, when 
> will they be accessible thorugh the API?
>


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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Paid_Organic_Query_Report

2014-03-25 Thread Ray Tsang (AdWords API Team)
Johannes,

Actually - good news.  The columns are now available.  Please use the 
ReportDefinitionService to retrieve the latest set of columns, that 
contains:

   - OrganicClicks (Long)
   - OrganicClicksPerQuery (Double)
   - OrganicImpressions (Long)
   - OrganicImpressionsPerQuery (Double)
   - OrganicQueries (Long)
   
We'll update the documents accordingly.

Cheers,

On Tuesday, March 25, 2014 5:47:49 PM UTC-4, Ray Tsang (AdWords API Team) 
wrote:
>
> Johannes,
>
> It appears that some of the organic stats are not currently available in 
> the report.  I've filed a feature request for this.  I will let you know 
> once it's available.
>
> Thanks!
>
> Ray
>
> On Tuesday, March 25, 2014 8:45:42 AM UTC-4, Jóhannes Vollertsen wrote:
>>
>> Hi Ray, 
>> I am just curious if there is any updates on this issue, as it's been 
>> nearly 2 weeks since your last update.
>>
>> Cheers!
>>
>> Den torsdag den 13. marts 2014 19.58.56 UTC+1 skrev Ray Tsang (AdWords 
>> API Team):
>>>
>>> Johannes,
>>>
>>> I've been looking into this to make sure I provide a useful response. 
>>>  Thank you for your patience.  I'll get back to you once I track this down.
>>>
>>> Thanks!
>>>
>>> On Monday, March 10, 2014 7:13:44 AM UTC-4, Jóhannes Vollertsen wrote:

 I am working on implementing the paid organic reports via the api, to 
 replace reports generated through the adwords interface. The api report 
 definition (
 https://developers.google.com/adwords/api/docs/appendix/reports#paid-organic)
  
 seems to be missing a lot of the columns that are available through the 
 adwords reports interface. All the organic columns such as "Organic 
 Clicks", "Organic Queries", "Combined Clicks" etc are not mentioned at 
 all, 
 and I was wondering if there is a way to access those via the api. 

 This report does not make a lot of sense without these columns, so my 
 questions is:

 Is there a way to access the missing columns today, and if not, when 
 will they be accessible thorugh the API?

>>>

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Paid_Organic_Query_Report

2014-03-25 Thread Ray Tsang (AdWords API Team)
Johannes,

It appears that some of the organic stats are not currently available in 
the report.  I've filed a feature request for this.  I will let you know 
once it's available.

Thanks!

Ray

On Tuesday, March 25, 2014 8:45:42 AM UTC-4, Jóhannes Vollertsen wrote:
>
> Hi Ray, 
> I am just curious if there is any updates on this issue, as it's been 
> nearly 2 weeks since your last update.
>
> Cheers!
>
> Den torsdag den 13. marts 2014 19.58.56 UTC+1 skrev Ray Tsang (AdWords API 
> Team):
>>
>> Johannes,
>>
>> I've been looking into this to make sure I provide a useful response. 
>>  Thank you for your patience.  I'll get back to you once I track this down.
>>
>> Thanks!
>>
>> On Monday, March 10, 2014 7:13:44 AM UTC-4, Jóhannes Vollertsen wrote:
>>>
>>> I am working on implementing the paid organic reports via the api, to 
>>> replace reports generated through the adwords interface. The api report 
>>> definition (
>>> https://developers.google.com/adwords/api/docs/appendix/reports#paid-organic)
>>>  
>>> seems to be missing a lot of the columns that are available through the 
>>> adwords reports interface. All the organic columns such as "Organic 
>>> Clicks", "Organic Queries", "Combined Clicks" etc are not mentioned at all, 
>>> and I was wondering if there is a way to access those via the api. 
>>>
>>> This report does not make a lot of sense without these columns, so my 
>>> questions is:
>>>
>>> Is there a way to access the missing columns today, and if not, when 
>>> will they be accessible thorugh the API?
>>>
>>

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Paid_Organic_Query_Report

2014-03-25 Thread Jóhannes Vollertsen
Hi Ray, 
I am just curious if there is any updates on this issue, as it's been 
nearly 2 weeks since your last update.

Cheers!

Den torsdag den 13. marts 2014 19.58.56 UTC+1 skrev Ray Tsang (AdWords API 
Team):
>
> Johannes,
>
> I've been looking into this to make sure I provide a useful response. 
>  Thank you for your patience.  I'll get back to you once I track this down.
>
> Thanks!
>
> On Monday, March 10, 2014 7:13:44 AM UTC-4, Jóhannes Vollertsen wrote:
>>
>> I am working on implementing the paid organic reports via the api, to 
>> replace reports generated through the adwords interface. The api report 
>> definition (
>> https://developers.google.com/adwords/api/docs/appendix/reports#paid-organic)
>>  
>> seems to be missing a lot of the columns that are available through the 
>> adwords reports interface. All the organic columns such as "Organic 
>> Clicks", "Organic Queries", "Combined Clicks" etc are not mentioned at all, 
>> and I was wondering if there is a way to access those via the api. 
>>
>> This report does not make a lot of sense without these columns, so my 
>> questions is:
>>
>> Is there a way to access the missing columns today, and if not, when will 
>> they be accessible thorugh the API?
>>
>

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Paid_Organic_Query_Report

2014-03-13 Thread Ray Tsang (AdWords API Team)
Johannes,

I've been looking into this to make sure I provide a useful response. 
 Thank you for your patience.  I'll get back to you once I track this down.

Thanks!

On Monday, March 10, 2014 7:13:44 AM UTC-4, Jóhannes Vollertsen wrote:
>
> I am working on implementing the paid organic reports via the api, to 
> replace reports generated through the adwords interface. The api report 
> definition (
> https://developers.google.com/adwords/api/docs/appendix/reports#paid-organic) 
> seems to be missing a lot of the columns that are available through the 
> adwords reports interface. All the organic columns such as "Organic 
> Clicks", "Organic Queries", "Combined Clicks" etc are not mentioned at all, 
> and I was wondering if there is a way to access those via the api. 
>
> This report does not make a lot of sense without these columns, so my 
> questions is:
>
> Is there a way to access the missing columns today, and if not, when will 
> they be accessible thorugh the API?
>

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Paid_Organic_Query_Report

2014-03-10 Thread Jóhannes Vollertsen
I am working on implementing the paid organic reports via the api, to 
replace reports generated through the adwords interface. The api report 
definition 
(https://developers.google.com/adwords/api/docs/appendix/reports#paid-organic) 
seems to be missing a lot of the columns that are available through the 
adwords reports interface. All the organic columns such as "Organic 
Clicks", "Organic Queries", "Combined Clicks" etc are not mentioned at all, 
and I was wondering if there is a way to access those via the api. 

This report does not make a lot of sense without these columns, so my 
questions is:

Is there a way to access the missing columns today, and if not, when will 
they be accessible thorugh the API?

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.