Re: BatchJobProcessingError.FILE_FORMAT_ERROR when using php client library

2017-11-15 Thread 'Vincent Racaza (AdWords API Team)' via AdWords API Forum
Hi,

Thanks for your feedback. I have already passed this to the team. However, 
this is not a guarantee that the request will be available in the future 
versions of the API. Please continue to follow our blog 
 to 
receive any future updates like new releases.

Thanks,
Vincent
AdWords API Team

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/e91b1f81-dd1a-4a6d-9db9-3ac6fa825fa9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Ad group label filter for ad performance report

2017-11-15 Thread harish.padmakar via AdWords API Forum
On running the below code i get this error 'AttributeError: 'module' object 
has no attribute 'ReportQueryBuilder''. Please do the needful.

*Code:*
import sys
from googleads import adwords

def main(client):
  # Initialize appropriate service.
  report_downloader = client.GetReportDownloader(version='v201710')

  # Create report query.
  report_query = (adwords.ReportQueryBuilder()
  .Select('CampaignId', 'AdGroupId', 'Id', 'Criteria',
  'CriteriaType', 'FinalUrls', 'Impressions', 
'Clicks',
  'Cost')
  .From('CRITERIA_PERFORMANCE_REPORT')
  .Where('Status').In('ENABLED', 'PAUSED')
  .During('LAST_7_DAYS')
  .Build())

  # You can provide a file object to write the output to. For this
  # demonstration we use sys.stdout to write the report to the screen.
  report_downloader.DownloadReportWithAwql(
  report_query, 'CSV', sys.stdout, skip_report_header=False,
  skip_column_header=False, skip_report_summary=False,
  include_zero_impressions=True)

if __name__ == '__main__':
  # Initialize client object.
adwords_client = adwords.AdWordsClient.LoadFromStorage()
main(adwords_client)

Thanks!

On Thursday, 16 November 2017 09:42:35 UTC+5:30, harish@latentview.com 
wrote:
>
> Oh. We miss having ad group label filter in ad report.
> I want to know which python file should I use for downloading report. I 
> see the following,
> download_criteria_report_as_stream_with_awql.py 
> download_criteria_report_as_stream_with_selector.py
> download_criteria_report_as_string_with_awql.py
> download_criteria_report_as_string_with_selector.py
> download_criteria_report_with_awql.py
> download_criteria_report_with_selector.py
> get_report_fields.py
> parallel_report_download.py 
>
> Would you mind explaining these? I read the docs given but I could not 
> understand. Thanks!
>
> On Wednesday, 15 November 2017 23:17:30 UTC+5:30, Bharani Cherukuri 
> (AdWords API Team) wrote:
>>
>> Hi Harish, 
>>
>> That's right, with the AdGroup Performance Report 
>> ,
>>  
>> you will be able to retrieve statistics aggregated at the Ad group level 
>> with one row per ad group. You can take a look at the available Report 
>> types 
>> 
>>  and 
>> our Reporting code samples in Java here 
>> . 
>> Code samples in other languages are also available here 
>> . I'm 
>> afraid, we will not be able to provide call support at the moment. Feel 
>> free to mention your concerns on this forum and you will get a response 
>> promptly. 
>>
>> Regards,
>> Bharani, AdWords API Team
>>
>> On Tuesday, November 14, 2017 at 5:05:21 AM UTC-5, 
>> harish@latentview.com wrote:
>>>
>>> Is it possible to apply adgroup label filter while downloading ad 
>>> performance report? (This is not possible using the UI)
>>>
>>> This email may contain confidential and privileged information for the sole 
>>> use of the intended recipient. Any review or distribution by others is 
>>> strictly prohibited. If you are not the intended recipient, please reply 
>>> back to the sender about the error and delete all copies of this email 
>>> message. Thank you.
>>>
>>>
-- 


This email may contain confidential and privileged information for the sole use 
of the intended recipient. Any review or distribution by others is strictly 
prohibited. If you are not the intended recipient, please reply back to the 
sender about the error and delete all copies of this email message. Thank you.

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/4690eeef-0a63-4829-9c1a-f06c214ef18f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Ad group label filter for ad performance report

2017-11-15 Thread harish.padmakar via AdWords API Forum
Oh. We miss having ad group label filter in ad report.
I want to know which python file should I use for downloading report. I see 
the following,
download_criteria_report_as_stream_with_awql.py 
download_criteria_report_as_stream_with_selector.py
download_criteria_report_as_string_with_awql.py
download_criteria_report_as_string_with_selector.py
download_criteria_report_with_awql.py
download_criteria_report_with_selector.py
get_report_fields.py
parallel_report_download.py 

Would you mind explaining these? I read the docs given but I could not 
understand. Thanks!

On Wednesday, 15 November 2017 23:17:30 UTC+5:30, Bharani Cherukuri 
(AdWords API Team) wrote:
>
> Hi Harish, 
>
> That's right, with the AdGroup Performance Report 
> ,
>  
> you will be able to retrieve statistics aggregated at the Ad group level 
> with one row per ad group. You can take a look at the available Report 
> types 
>  
> and 
> our Reporting code samples in Java here 
> . 
> Code samples in other languages are also available here 
> . I'm 
> afraid, we will not be able to provide call support at the moment. Feel 
> free to mention your concerns on this forum and you will get a response 
> promptly. 
>
> Regards,
> Bharani, AdWords API Team
>
> On Tuesday, November 14, 2017 at 5:05:21 AM UTC-5, 
> harish@latentview.com wrote:
>>
>> Is it possible to apply adgroup label filter while downloading ad 
>> performance report? (This is not possible using the UI)
>>
>> This email may contain confidential and privileged information for the sole 
>> use of the intended recipient. Any review or distribution by others is 
>> strictly prohibited. If you are not the intended recipient, please reply 
>> back to the sender about the error and delete all copies of this email 
>> message. Thank you.
>>
>>
-- 


This email may contain confidential and privileged information for the sole use 
of the intended recipient. Any review or distribution by others is strictly 
prohibited. If you are not the intended recipient, please reply back to the 
sender about the error and delete all copies of this email message. Thank you.

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/0b43f9a3-f712-4565-859b-a428b835765a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: BatchJobProcessingError.FILE_FORMAT_ERROR when using php client library

2017-11-15 Thread orzorc
Thank you very much.
I forgot that not all operations could done by batch job.
In this case, could you please consider to return a more specific error to 
tell us that the operation is not supported by batch job?
And really really appreciate your help

On Wednesday, November 15, 2017 at 3:22:52 PM UTC+8, Vincent Racaza 
(AdWords API Team) wrote:
>
> Hi,
>
> Based in your SOAP logs, the error was generated because you included the 
> LabelOperation which is not supported for batch processing. Please see this 
> guide 
> 
>  for 
> the list of supported operations in the BatchJobService 
> 
> .
>
> If you are creating new labels, you need to create these separately via 
> LabelService.mutate() 
> ,
>  
> and the operation should not be included in the BatchJobService. However, 
> please be guided that we have issues currently in getting the newly created 
> labels. Kindly see this forum post 
> 
>  for 
> more information. We are working to fix this issue.
>
> Let me know if you have further clarifications.
>
> Thanks,
> Vincent
> AdWords API Team
>

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/bb5b3454-909c-49ee-9553-aca0f6d89b18%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: LabelError.DUPLICATE_NAME although there is no such label

2017-11-15 Thread Keanna Sion
https://groups.google.com/forum/#!topic/adwords-api/4P2-VyF7tvE 

On Wednesday, November 15, 2017 at 12:35:11 PM UTC-5, Peter Lanser wrote:
>
> Hi,
>
> we have accounts where we cannot create labels because of a DUPLICATE_NAME 
> error although there is no label with the given name. To be precise - there 
> is no _enabled_  label with the given name.
> This error is reproducible  both via API (v201705) and via Adwords UI.
>
> We can provide multiple client customer ids for this scenario.
>
> Regards,
> Peter
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/13fb8739-6e84-418e-b3bb-6779fe2ce24f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Downloading Price Extensions in an API Report

2017-11-15 Thread 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API Forum
Hi, 

To get the stats of your price extensions, you can use Placeholder Feed 
Item Report 

 and 
include a condition to filter the PlaceholderType field. A PlaceholderType 
 
value 
of 35 indicates that the feed item is a price extension. The available 
fields in this report can be found here 
.
 
You can refer to DownloadCriteriaReportWithAwql 

 for 
a code sample in Java for reporting. You will need to modify the code to 
download Placeholder Feed Item Report. Samples in other languages can also 
be found here 
.

Below is a sample AWQL that you can use for Placeholder Feed Item Report:
SELECT FeedId, FeedItemId, AttributeValues, PlaceholderType FROM 
PLACEHOLDER_FEED_ITEM_REPORT WHERE PlaceholderType in [35]

Thanks,
Sreelakshmi, AdWords API Team

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/ae78bd30-df93-4060-9eec-00144f603985%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Extract call extension info associated to an ad group

2017-11-15 Thread 'Bharani Cherukuri (AdWords API Team)' via AdWords API Forum
Hi Jose, 

The metrics you're trying to pull are not available in a single report. You 
will have to use multiple reports to get all the data. Using the AdGroup 
Performance Report 
,
 
you could get the AdGroupId and filter data in the Ad Performance Report 
.
 
With the Ad Performance Report, you can retrieve the CallOnlyPhoneNumber 

 to 
pull the phone number related metrics.

Thanks,
Bharani, AdWords API Team

On Wednesday, November 15, 2017 at 4:38:28 AM UTC-5, jose.z...@walmeric.com 
wrote:
>
>
> Hi:
>
> I'm generating a performance report for my ad groups ( clicks , click 
> types, impressions ...)
> If an ad group is associated with a call extension (  I would like to know 
> phone number associated  )
>
> Is there any way to extract call extension info ( specially phone number ) 
> associated to an ad group ?
>
> Thanks and regards 
>
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/c48becef-f28f-40ed-8637-dcc88b6a3489%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: LabelError.DUPLICATE_NAME although there is no such label

2017-11-15 Thread 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API Forum
Hi Peter, 

We are aware of the ongoing issue with the Labels in the AdWordsAPI and the 
AdWords Scripts. Please take a look at this forum 
 post for 
more details. You can keep an eye on that thread for updates on the issue. 

Thanks,
Sreelakshmi, AdWords API Team

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/6cfd916d-08c3-4f31-b875-c8bb888f770d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Adwords Audience All Visitors not available

2017-11-15 Thread 'Bharani Cherukuri (AdWords API Team)' via AdWords API Forum
Hi Ronak, 

That's right. The All Visitors list is automatically generated when the 
first display Remarketing campaign is created by following the steps 
mentioned in this guide 
. You will not be 
able to create the All Visitors list through the API. However, you can 
create a Remarketing campaign through the API using the CampaignService and 
specifying the advertisingChannelType 

 as 
DISPLAY. You may refer to the code sample in Java here 

 as 
a reference. Code samples in other languages are also available here 
.

Regards,
Bharani, AdWords API Team

On Monday, November 13, 2017 at 7:14:59 AM UTC-5, Ronak Shah wrote:
>
> Hello Adwords Team,
>
> I have an adwords account under my test mcc account.I am calling the 
> AdwordsUserList Service and getting the remarketing user list but api gives 
> empty result, and when I navigate to Shared Library -> Audiences section, I 
> don't see the *All Visitors* list which adwords automatically creates, it 
> says "Create Remarketing List" check the attached screenshot
>
> As per the Adwords Doc the *All visitors* tag is automatically created 
> and available for all adwords account,  but under the audience section its 
> not showing up. So is there any way to create this via API ?
>
> Thanks,
> Ronak
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/e4397390-72d2-4528-9eca-a18df703bca0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Ad group label filter for ad performance report

2017-11-15 Thread 'Bharani Cherukuri (AdWords API Team)' via AdWords API Forum
Hi Harish, 

That's right, with the AdGroup Performance Report 
,
 
you will be able to retrieve statistics aggregated at the Ad group level 
with one row per ad group. You can take a look at the available Report types 
 
and 
our Reporting code samples in Java here 
. 
Code samples in other languages are also available here 
. I'm 
afraid, we will not be able to provide call support at the moment. Feel 
free to mention your concerns on this forum and you will get a response 
promptly. 

Regards,
Bharani, AdWords API Team

On Tuesday, November 14, 2017 at 5:05:21 AM UTC-5, 
harish@latentview.com wrote:
>
> Is it possible to apply adgroup label filter while downloading ad 
> performance report? (This is not possible using the UI)
>
> This email may contain confidential and privileged information for the sole 
> use of the intended recipient. Any review or distribution by others is 
> strictly prohibited. If you are not the intended recipient, please reply back 
> to the sender about the error and delete all copies of this email message. 
> Thank you.
>
>

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/c2041d57-ceef-41a6-b270-3f37d5c6d866%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


LabelError.DUPLICATE_NAME although there is no such label

2017-11-15 Thread Peter Lanser
Hi,

we have accounts where we cannot create labels because of a DUPLICATE_NAME 
error although there is no label with the given name. To be precise - there 
is no _enabled_  label with the given name.
This error is reproducible  both via API (v201705) and via Adwords UI.

We can provide multiple client customer ids for this scenario.

Regards,
Peter

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/b16ae2b3-65c4-41b2-8a4c-e48cbc4b00de%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Downloading Price Extensions in an API Report

2017-11-15 Thread rachelhardman64
Which report do I need to use in order to download the Price Extensions 
information?
I have tried the Placeholder Item Feed Report but cannot seem to get it to 
work, Which fields will I need to download?
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/9ec64b50-0f3d-4c6b-acbf-cde14ffeb957%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: API not responding

2017-11-15 Thread 'Nadine Sundquist (AdWords API Team)' via AdWords API Forum
Hello Anton,

On occasion, there are issues either on the client side or the server side 
with serving WSDLs especially when they have to be pulled so frequently. I 
have good news for you! Due to this being a general issue, we released a 
new PHP client library version 
 yesterday 
that has all the WSDLs included in the library so it doesn't need to go to 
the server for them. If you're still using an older version of the PHP 
client library, then you can change the wsdlCache 

 option 
to cache all the WSDLs. If you have any further issues after making one of 
those changes, then please get back to me.

Happy coding,
Nadine, AdWords API Team

On Wednesday, November 15, 2017 at 1:04:37 AM UTC-5, Vincent Racaza 
(AdWords API Team) wrote:
>
> Hi Anton,
>
> Could you provide your SOAP request and response logs with your actual 
> clientCustomerId via *Reply privately to author* so we can further 
> investigate?
>
> Thanks,
> Vincent
> AdWords API Team
>

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/9a7f4bc3-18e2-4172-8520-2103f1e9d9df%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: AdWords Express Data Discrepancies

2017-11-15 Thread 'Josh Radcliff (AdWords API Team)' via AdWords API Forum
Hi Joseph,

Please see my comments inline below.

Thanks,
Josh, AdWords API Team

On Tuesday, November 14, 2017 at 2:33:48 PM UTC-5, Joseph Collins wrote:
>
> Josh,
>
> Any update to this issue? I read the blog post about the AWX campaign 
> migration, but there is no mention of when this migration begins (perhaps 
> this issue is a symptom of an ongoing migration?) or when it is expected to 
> be completed.
>

The migration began a few weeks ago and is ongoing. I would expect it to 
continue as campaigns created by AWX (including *new* campaigns created by 
AWX) are moved to the new structure.

Do we need a specific version of the AdWords API to see these additional 
> campaigns in the campaign performance report? 
>

The change to expose the new EXPRESS/UNKNOWN campaigns in the AdWords API 
will apply to *all* available versions of the AdWords API (currently, 
versions >= v201702).
 

> There is also no mention of a migration cutover delay to help explain the 
> missing AWX performance as reported by our users. 
>

The change above is specifically to address the missing AWX performance 
data. Since the EXPRESS/UNKNOWN campaigns are not exposed in the AdWords 
API, users are currently unable to get performance data for the migrated 
campaigns. Once the fix is rolled out, you will be able to retrieve 
performance data for the entire history of the migrated campaigns to fill 
in the gaps you're currently seeing.


>
> On Monday, November 6, 2017 at 2:00:08 PM UTC-5, Josh Radcliff (AdWords 
> API Team) wrote:
>>
>> Hi,
>>
>> We're aware of this issue and I'm actively looking into it. I'll provide 
>> an update as soon as I have more information.
>>
>> Thanks,
>> Josh, AdWords API Team
>>
>> On Sunday, November 5, 2017 at 1:36:16 PM UTC-5, Joseph Collins wrote:
>>>
>>> A user of our system is seeing a significant disagreement between our 
>>> data and the AdWords Express interface. Below are user-provided screenshots 
>>> of the AdWords Express CID in question, its dashboard and our API request / 
>>> response.
>>>
>>>
>>> The mismatch between the 'Hayworth Equipment AWX' account description 
>>> and the 'Hayworth Equipment Sales' account label on the dashboard suggests 
>>> that this issue is due to user error (navigating to the wrong Express 
>>> dashboard), but the user is confident they are not making a mistake and 
>>> they report that these issues affect several of their Express accounts.
>>>
>>>
>>> For this specific account, you will notice that the API claims activity 
>>> stopped on October 6th, yet the dashboard shows ongoing activity. On the 
>>> days where both the dashboard and API show activity, the numbers do not 
>>> come close to agreeing.
>>>
>>>
>>> Any help in explaining or resolving this discrepancy would be greatly 
>>> appreciated.
>>>
>>>
>>>
>>> 
>>>
>>>
>>> *User-Provided Evidence*
>>>
>>>
>>>
>>> 
>>>
>>>
>>> 
>>>
>>>
>>>
>>> 
>>>
>>> *Request*
>>>
>>> Headers
>>> (
>>> [0] => Authorization: Bearer X
>>> [1] => developerToken: X
>>> [2] => clientCustomerId: 5571930852
>>> [3] => includeZeroImpressions: true
>>> )
>>> 
>>> 
>>> Date
>>> Impressions
>>> Clicks
>>> Ctr
>>> Cost
>>> ConversionValue
>>> AverageCpc
>>> Conversions
>>> ConversionRate
>>> CostPerConversion
>>> ValuePerConversion
>>> AveragePosition
>>> 
>>> 20170906
>>> 20171104
>>> 
>>> 
>>> Report
>>> ACCOUNT_PERFORMANCE_REPORT
>>> CUSTOM_DATE
>>> GZIPPED_CSV
>>> 
>>>
>>>
>>> 
>>>
>>> *Response*
>>>
>>> "Report (Sep 6, 2017-Nov 4, 2017)"
>>> Day,Impressions,Clicks,CTR,Cost,Total conv. value,Avg. 
>>> CPC,Conversions,Conv. rate,Cost / conv.,Value / conv.,Avg. position
>>> 2017-10-01,25518,37,0.14%,3182,0.00,86,0.00,0.00%,0,0.00,1.9
>>>
>>> 2017-10-04,16918,37,0.22%,3336,0.00,901622,2.00,5.41%,1668,0.00,2.2
>>> 2017-10-02,15028,37,0.25%,3424,0.00,925405,0.00,0.00%,0,0.00,2.0
>>> 2017-10-06,0,0,0.00%,0,0.00,0,0.00,0.00%,0,0.00,0.0
>>> 2017-10-13,0,0,0.00%,0,0.00,0,0.00,0.00%,0,0.00,0.0
>>> 2017-09-17,0,0,0.00%,0,0.00,0,0.00,0.00%,0,0.00,0.0
>>> 2017-11-03,0,0,0.00%,0,0.00,0,0.00,0.00%,0,0.00,0.0
>>> 2017-11-02,0,0,0.00%,0,0.00,0,0.00,0.00%,0,0.00,0.0
>>> 2017-10-26,0,0,0.00%,0,0.00,0,0.00,0.00%,0,0.00,0.0
>>> 2017-10-03,20683,37,0.18%,3334,0.00,901081,0.00,0.00%,0,0.00,2.1
>>> 

Extract call extension info associated to an ad group

2017-11-15 Thread jose . zaragoza

Hi:

I'm generating a performance report for my ad groups ( clicks , click 
types, impressions ...)
If an ad group is associated with a call extension (  I would like to know 
phone number associated  )

Is there any way to extract call extension info ( specially phone number ) 
associated to an ad group ?

Thanks and regards 


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/171543bb-9fe8-4cc0-a8f9-ad5732f53122%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Adwords Audience All Visitors not available

2017-11-15 Thread Ronak Shah
Hello Bharani,

Tere are not any campaigns in the account say its a fresh new account and I 
want to create the remarketing campaigns via Adwords API.We have a tool 
which creates the campaigns under client account, but the audience list is 
empty.So you saying that its not possible via API and have to create the 
remarketing campaigns via Adwords UI then only the default Remarketing list 
"All 
Visitors" will be created else not.

Let me know

Thanks


On Tuesday, November 14, 2017 at 2:26:26 AM UTC+5:30, Bharani Cherukuri 
(AdWords API Team) wrote:
>
> Hello, 
>
> If your concern is to get the automatically created list for Remarketing 
> campaigns, for the first time, you will have to create a Remarketing 
> campaign in the AdWords UI and then AdWords will automatically create a 
> default Remarketing list for you like "All Visitors". This way, you're 
> all set up to start targeting your lists in your ad groups right away. You 
> may refer to this article 
>  for additional 
> reference. If this does not resolve the issue, please provide us the 
> clientCustomerId so we can take a look and assist you further. 
>
> Regards,
> Bharani, AdWords API Team
>
> On Monday, November 13, 2017 at 7:14:59 AM UTC-5, Ronak Shah wrote:
>>
>> Hello Adwords Team,
>>
>> I have an adwords account under my test mcc account.I am calling the 
>> AdwordsUserList Service and getting the remarketing user list but api gives 
>> empty result, and when I navigate to Shared Library -> Audiences section, I 
>> don't see the *All Visitors* list which adwords automatically creates, 
>> it says "Create Remarketing List" check the attached screenshot
>>
>> As per the Adwords Doc the *All visitors* tag is automatically created 
>> and available for all adwords account,  but under the audience section its 
>> not showing up. So is there any way to create this via API ?
>>
>> Thanks,
>> Ronak
>>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/3b78cb5b-2c81-4097-ba79-6c0537b46e18%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: UserListError.CONCRETE_TYPE_REQUIRED while adding LogicalUserList using PHP google api client

2017-11-15 Thread 'Peter Oliquino' via AdWords API Forum
Hi,

I noticed that the ADD operator was set before you set the operand in your 
code. Could you try and use the below order of the code instead? 

$addListOperation->setOperand($combinedList);
$addListOperation->setOperator(Operator::ADD);


Should the issue persist, could you send to me the complete SOAP request 
and response so I can further investigate? You may then reply 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/dd6728cb-d1f9-4672-bdec-e55dc4a0da0e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: DEVELOPER_TOKEN_NOT_APPROVED

2017-11-15 Thread songxiaoxiao1993
You can upgrade the PHP version

在 2016年3月22日星期二 UTC+8下午9:23:33,Umesh Dengale写道:
>
> Hello,
>
> The developer token with test access is allowed to make API call to test 
> AdWords accounts. The AdWords services will return DEVELOPER_TOKEN_NOT_
> APPROVED 
> 
>  error 
> when you try to access production AdWords API with developer token with 
> test access.
>
> To access production AdWords API, you could apply for a *basic access *(has 
> 10,000 
> operations / day limit). Please check out the basic concepts guide  
> for
>  
> more details about the different access levels. You could apply for basic 
> access by login to manager account(MCC) and go to the *gear wheel on* *top 
> Right ->Account Settings->AdWords API Center*. The compliance team will 
> review and approves the basic access application. The client could contact 
>  the compliance team 
> for updates of the application. 
>
> 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/6a61024e-54bc-432d-8e3f-446f49876e82%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Campaign Performance Report - Cost

2017-11-15 Thread 'Vincent Racaza (AdWords API Team)' via AdWords API Forum
Hi,

All fields with type Money 

 like 
the Cost 

 metric 
of the Campaign Performance Report 

 are 
returned in micros via the AdWords API. So, if you can see a $12 value in 
the UI, its equivalent in the API is 1200. You can divide the API value 
by 100 so your UI and API will have the same results.

Let me know if you have further clarifications.

Thanks,
Vincent
AdWords API Team

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

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


Re: dotNET api returns no values for some queries.

2017-11-15 Thread 'Peter Oliquino' via AdWords API Forum
Hi Brett, 

To better investigate the issue, could you provide the complete SOAP 
request and response generated when you didn't get any results? Also, could 
you try the same exact request using the Keywords Planner of the AdWords 
UI, using also the same filters you applied in your AdWords API request and 
send to me the complete screenshot with the results? You may reply using 
the *Reply privately to author* option.

Additionally, could you confirm if you were also the author to this similar 
thread 

?

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/f35ad2da-e873-4266-9337-e994f7356aee%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Error using TargetingIdeaService STATS with CategoryProductsAndServicesSearchParameter

2017-11-15 Thread 'Vincent Racaza (AdWords API Team)' via AdWords API Forum
Hi,

For CategoryProductsAndServicesSearchParameter 
,
 
only the IDEAS is supported as requestType 

 and 
not STATS, therefore, your current scenario is not possible at this time.

Let me know if you have further clarifications.

Thanks,
Vincent
AdWords API Team

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/6c89cc90-8307-4d48-9878-d0d40844b0c0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.