Add list ipAddress Exclusions to campaign

2016-08-09 Thread Huy Nguyễn Văn
I have list Campaign and list IP

I want add list IP for each campaign ?

 Selector selector = new Selector() {
fields = new string[] { Campaign.Fields.Id, Campaign.Fields.Name, 
Campaign.Fields.Status },
ordering = new OrderBy[] { OrderBy.Asc(Campaign.Fields.Name) }
  };


  (user.Config as AdWordsAppConfig).ClientCustomerId = txtCustomerId.
Text;


  try {
CampaignService service =
(CampaignService) user.GetService(AdWordsService.v201601.
CampaignService);


CampaignPage page = service.get(selector);


// Display campaigns.
if (page != null && page.entries != null && page.entries.Length > 0) 
{
  DataTable dataTable = new DataTable();
  dataTable.Columns.AddRange(new DataColumn[] {
  new DataColumn("Serial No.", typeof(int)),
  new DataColumn("Campaign Id", typeof(long)),
  new DataColumn("Campaign Name", typeof(string)),
  new DataColumn("Status", typeof(string))
  });
  for (int i = 0; i < page.entries.Length; i++) {
Campaign campaign = page.entries[i];
DataRow dataRow = dataTable.NewRow();
dataRow.ItemArray = new object[] {i + 1, campaign.id, campaign.
name,
campaign.status.ToString()
};
dataTable.Rows.Add(dataRow);

 //* add list **ipAddress Exclusions  to campaign ?*


  }

  CampaignGrid.DataSource = dataTable;
  CampaignGrid.DataBind();
} else {
  Response.Write("No campaigns were found.");
}
  } catch (Exception e) {
Response.Write(string.Format("Failed to get campaigns. Exception 
says \"{0}\"",
e.Message));
  }
}




Please!

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/a59d392f-e546-4dd4-8954-0d1c9ae30eaf%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Support add list IP to Campaign in adwords API by .NET

2016-08-09 Thread Huy Nguyễn Văn
I have list Campaign and list IP

I want add list IP for each campaign ?

 Selector selector = new Selector() {
fields = new string[] { Campaign.Fields.Id, Campaign.Fields.Name, 
Campaign.Fields.Status },
ordering = new OrderBy[] { OrderBy.Asc(Campaign.Fields.Name) }
  };


  (user.Config as AdWordsAppConfig).ClientCustomerId = txtCustomerId.
Text;


  try {
CampaignService service =
(CampaignService) user.GetService(AdWordsService.v201601.
CampaignService);


CampaignPage page = service.get(selector);


// Display campaigns.
if (page != null && page.entries != null && page.entries.Length > 0)
 {
  DataTable dataTable = new DataTable();
  dataTable.Columns.AddRange(new DataColumn[] {
  new DataColumn("Serial No.", typeof(int)),
  new DataColumn("Campaign Id", typeof(long)),
  new DataColumn("Campaign Name", typeof(string)),
  new DataColumn("Status", typeof(string))
  });
  for (int i = 0; i < page.entries.Length; i++) {
Campaign campaign = page.entries[i];
DataRow dataRow = dataTable.NewRow();
dataRow.ItemArray = new object[] {i + 1, campaign.id, campaign.
name,
campaign.status.ToString()
};
dataTable.Rows.Add(dataRow);

 //* add list **ipAddress Exclusions  to campaign ?*


  }

  CampaignGrid.DataSource = dataTable;
  CampaignGrid.DataBind();
} else {
  Response.Write("No campaigns were found.");
}
  } catch (Exception e) {
Response.Write(string.Format("Failed to get campaigns. Exception 
says \"{0}\"",
e.Message));
  }
}




Please!

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/74d2f1e3-4870-4027-a147-e1f8896db3aa%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Support add list IP to Campaign in adwords API by .NET

2016-08-09 Thread 'Joyce Lava' via AdWords API Forum
Hello,

Apologies for the delayed response. You can use the CampaignCriterionService 

 to 
add ipAddress exclusion as NegativeCampaignCriterion 

 with criterion 

 as IpBlock 
.
 
You may refer to this example code 

 (.NET 
client library) that shows how to use the NegativeCampaignCriterion. You 
need to replace the keyword object (highlighted line here 

 from 
the example code) with the IpBlock object to be the criterion 
of negativeCriterion.

Hope this helps.

Best,
Joyce, 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/71575004-0d18-4e25-9257-d1d4ccf0ec8f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Some Thoughts on the {ignore} Parameter

2016-08-09 Thread Dorian Kind
Hi Shwetha,

thanks for your efforts. Unfortunately, the AdWords Community forum has not 
quite the same level of expertise as this group, in my experience. I'll try 
anyways.

Best regards,
Dorian

On Monday, August 8, 2016 at 10:02:28 PM UTC+2, Shwetha Vastrad (AdWords 
API Team) wrote:
>
> Hi Dorian,
>
> On this forum, we address issues related to AdWords API. This question is 
> related to the AdWords product in general, and is not specific to AdWords 
> API. Please post this question in the AdWords Community Forum 
> 
>  as 
> they are better equipped to answer this question.
>
> Regards,
> Shwetha, 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/60b5c043-3db1-47b7-8d0d-5c5d95270b47%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Creating TrueView Template Ad

2016-08-09 Thread Rajesh Roushan
Hi,
Can any one answer this question

http://stackoverflow.com/questions/38539139/what-should-be-the-final-url-and-display-url-to-create-trueview-in-search-video

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/a261bd08-4165-49a6-9d7f-cdce7a082415%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


API access to another MCC account

2016-08-09 Thread Yana Sergeeva
I would like to create an application for context agencies (to create 
reports, not to change accounts).
API library has config parameters:

   - developerToken
   - userAgent
   - clientCustomerId
   - client_id
   - client_secret
   - refresh_token
   
I created my own MCC, developer token (in a test mode now) and test account 
under MCC. If i do an access to my own test account - everything is fine.
If I have a client who has own MCC and own customers. 
1) What parameters should I change to get an access to his customer's 
account? Or how can I do it? (I tried to change UserAgent and 
ClientCustomerId but access denied) 
2) Can I do it under test mode for developer key?

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/446b99ad-043b-4a2c-9036-2d3bc4d054a4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


extracting campaign (or ad/adgroup etc.) focus

2016-08-09 Thread Piotrable1
Hello,

how can I check in API if campaign (ad/ adgroup...) is focused on clicks, 
impressions. In other words how can I see what is the purpose of campaign?

Greetings

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/b7470e50-21a1-4b04-b485-ceb2da60d4e3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[BatchJobService] Platform Bid Adjustment

2016-08-09 Thread Adrian Blanco
Hello,

Up to now I'm able to create bid adjustment for mobile platform, but now 
I'm trying to create Bid Adjustment for tablet and desktop Platforms 
through BatchJobService in test account, I sent the operations properly, 
like mobile adjustment, but with different platform ID.
The response from adwords api is a success operation, but when i go to the 
adwords client to see if my changes have been made, I realize that the 
changes doesn't appear.

One things about this: 

1# In adwords client with test account can't assign manually an adjustmen 
bid to the desktop/tablet platform.

Any suggestions for this problem?

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/2aca76ca-3d17-4b79-9bdd-d9fb2bd25989%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Creating TrueView Template Ad

2016-08-09 Thread 'Josh Radcliff (AdWords API Team)' via AdWords API Forum
Hi,

The *displayUrl* must start with either youtube.com/channel/UC or 
youtube.com/user/. Please give that a try and post back here if it doesn't 
work out for you.

Thanks,
Josh, AdWords API Team

On Tuesday, August 9, 2016 at 8:04:31 AM UTC-4, Rajesh Roushan wrote:
>
> Hi,
> Can any one answer this question
>
>
> http://stackoverflow.com/questions/38539139/what-should-be-the-final-url-and-display-url-to-create-trueview-in-search-video
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/8e9d1cd6-d5d5-4d4e-92e6-04f5c8bbe587%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Condition, Channel and Channel Exclusivity values in PRODUCT_PARTITION_REPORT translated to campaign's "Country of sale" language

2016-08-09 Thread 'Michael Cloonan (AdWords API Team)' via AdWords API Forum
Hello,

I wanted to come back and just update this thread that this reported 
behavior is intended. The reports are intended to be the source of truth 
here, not the data retrieved from the ad groups.

I apologize for the inconvenience and the long delay before this 
confirmation.

Regards,
Mike, AdWords API Team

On Wednesday, February 10, 2016 at 1:18:23 PM UTC-5, Michael Cloonan 
(AdWords API Team) wrote:
>
> Hello,
>
> I apologize that you had to go through that hassle because of this lack of 
> turnaround time. I'm going to push on engineering again to try to get an 
> answer. I should hopefully have an answer for you by sometime next week 
> about the plans here.
>
> Regards,
> Mike, AdWords API Team
>
> On Wednesday, February 10, 2016 at 12:58:55 PM UTC-5, HK wrote:
>>
>> Hi, Michael
>>
>> Any indication from engineering whether this is desired behavior or not? 
>> We have manually translated the 98 values we need to for now, but as I'm 
>> sure you've figured out by now :-), would like to avoid having to do so for 
>> other langues we might support in the future.
>>
>> Thanks,
>> Hans
>>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/2962f075-fd19-4ba0-81a9-9300e7831c70%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Deprecation of Converted Clicks

2016-08-09 Thread Stephen
Hi all,

I wanted to clarify on the deprecation of the field *"Converted clicks"*. 
The latest version of the API 201607 has deprecated this field which is in 
line with the interface that will no longer support past September 2016. 

I wanted to clarify on the timeframe availability of the Converted clicks 
field from the API if using older versions and for how long will this be 
supported?

I wanted know whether we have to pull a historical record of converted 
clicks before September of will we have more time using older API versions.

Many thanks,
Stephen

-- 
MVF Global is a trading name of Marketing VF Limited (MVF), a company 
registered in England and Wales with company number 06951544, whose 
registered office address is at Imperial Works,Block C,Perren 
Street,London,NW5 3ED, United Kingdom. VAT number: GB207713719.
This e-mail (and any attachments) is confidential and may contain personal 
views which are not the views of MVF unless specifically stated. If you 
have received it in error, please delete it from your system. Do not use, 
copy or disclose the information in any way nor act in reliance on it and 
notify the sender immediately. Please note that MVF monitors e-mails sent 
or received. Further communication will signify your consent to this.

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

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


Re: api version 201605

2016-08-09 Thread 'Michael Cloonan (AdWords API Team)' via AdWords API Forum
Hello,

The engineering team has taken a look at your account and only identified 
the single ID that you had already provided as being affected by that 
issue. If you check it again, it should have results and a download URL.

Please let me know if this recurs with any future jobs.

Regards,
Mike, AdWords API Team

On Monday, August 8, 2016 at 2:01:32 PM UTC-4, Michael Cloonan (AdWords API 
Team) wrote:
>
> Hello,
>
> The engineering team has confirmed that they are aware of a bug that can 
> put jobs into this state when they shouldn't be. They do have a process 
> they can perform on these "stuck" jobs to force them to return a correct 
> DownloadUrl.
>
> If you provide me with a complete list of jobs that have made their way 
> into this state, I can have engineering get them back on track for you.
>
> In the meanwhile, the team is working hard on getting a permanent fix in 
> place so this no longer happens going forward.
>
> Regards,
> Mike, AdWords API Team
>
> On Monday, August 8, 2016 at 8:17:52 AM UTC-4, Michael Cloonan (AdWords 
> API Team) wrote:
>>
>> Hello,
>>
>> I apologize for the back and forth. I've contacted our engineering team 
>> to take a look at a specific job you provided and see if we can determine 
>> exactly what is going wrong from there. I'll let you know if I need more 
>> information from you or if I have any updates to share.
>>
>> Regards,
>> Mike, AdWords API Team
>>
>> On Sunday, August 7, 2016 at 5:17:10 PM UTC-4, xtcsuk wrote:
>>>
>>> Thanks again for your reply.
>>>
>>> Based on our records that particular job should have contained at least 
>>> 173 operations.  Our process in a nutshell, the system creates a batch, 
>>> which contains >=1 jobs, this particular job was part of a batch which 
>>> contained 218 jobs all of which finished with "Done" status and with N 
>>> number of operation results except this one, this particular one as you now 
>>> know, has "Done" status with no operations.
>>>
>>> We have couple of more these instances, available upon request, however, 
>>> cannot easily get to log the upload operation for any scenarios as such, as 
>>> said earlier this has happened/happens intermittently.
>>>
>>> On your side, would it be possible to clarify number of operations on 
>>> upload/active stages for the aforementioned job?
>>>
>>> regards,
>>> Zia
>>>
>>> On Friday, 5 August 2016 17:29:57 UTC+1, Michael Cloonan (AdWords API 
>>> Team) wrote:

 Hello,

 Under normal circumstances, the job shouldn't move to Done unless some 
 data has been provided and processed. That's why I'm so curious about what 
 exactly made it into your request that allowed this to happen.

 Regards,
 Mike, AdWords API Team

 On Friday, August 5, 2016 at 11:03:35 AM UTC-4, xtcsuk wrote:
>
> Hi Mike,
>
> Thanks for the reply, our records show the job included some 
> operations, but do not have the log to provide you with, will try to see 
> if 
> we can do this.
> In the meantime, is it possible for a job change status from Active to 
> Done with no operations attached to it?
>
> regards,
> Zia
>
> On Friday, 5 August 2016 13:15:46 UTC+1, Michael Cloonan (AdWords API 
> Team) wrote:
>>
>> Hello,
>>
>> I took a look at the log you provided. It appears that in the case 
>> where the downloadUrl is omitted, there were also no operations 
>> performed, 
>> which means there would be no results to share via the downloadUrl 
>> anyway. 
>> Do you have logs of exactly what operations you uploaded for such a job? 
>> I'm not sure what would cause a job to kick off without having received 
>> any 
>> operations to perform, so I want to see if perhaps you're doing anything 
>> incorrect at that step in the process.
>>
>> Regards,
>> Mike, AdWords API Team
>>
>> On Friday, August 5, 2016 at 7:33:18 AM UTC-4, xtcsuk wrote:
>>>
>>> Hi Pete,
>>>
>>> We are still suffering from batchjobservice returning null 
>>> downloadUrl (intermittently) for a completed (done) job, sent you the 
>>> soap 
>>> (request/response) privately, just wondering if you have received it.
>>>
>>> regards,
>>> Zia
>>>
>>> On Tuesday, 2 August 2016 04:09:00 UTC+1, Peter Oliquino wrote:

 Hi Zia,

 Feel free to contact us anytime if you encounter any issues.

 Cheers,
 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, 

Re: api version 201605

2016-08-09 Thread xtcsuk
Hi Mike,

Thank you,

As for the old jobs, they are no longer valid, as the system has moved on 
with new changes.
So, this has now been rectified, in case of a job with no operation, the 
api will throw or something on upload, and will not move the job status 
from pending to complete, right?

regards,
Zia

On Tuesday, 9 August 2016 18:28:08 UTC+1, Michael Cloonan (AdWords API 
Team) wrote:
>
> Hello,
>
> The engineering team has taken a look at your account and only identified 
> the single ID that you had already provided as being affected by that 
> issue. If you check it again, it should have results and a download URL.
>
> Please let me know if this recurs with any future jobs.
>
> Regards,
> Mike, AdWords API Team
>
> On Monday, August 8, 2016 at 2:01:32 PM UTC-4, Michael Cloonan (AdWords 
> API Team) wrote:
>>
>> Hello,
>>
>> The engineering team has confirmed that they are aware of a bug that can 
>> put jobs into this state when they shouldn't be. They do have a process 
>> they can perform on these "stuck" jobs to force them to return a correct 
>> DownloadUrl.
>>
>> If you provide me with a complete list of jobs that have made their way 
>> into this state, I can have engineering get them back on track for you.
>>
>> In the meanwhile, the team is working hard on getting a permanent fix in 
>> place so this no longer happens going forward.
>>
>> Regards,
>> Mike, AdWords API Team
>>
>> On Monday, August 8, 2016 at 8:17:52 AM UTC-4, Michael Cloonan (AdWords 
>> API Team) wrote:
>>>
>>> Hello,
>>>
>>> I apologize for the back and forth. I've contacted our engineering team 
>>> to take a look at a specific job you provided and see if we can determine 
>>> exactly what is going wrong from there. I'll let you know if I need more 
>>> information from you or if I have any updates to share.
>>>
>>> Regards,
>>> Mike, AdWords API Team
>>>
>>> On Sunday, August 7, 2016 at 5:17:10 PM UTC-4, xtcsuk wrote:

 Thanks again for your reply.

 Based on our records that particular job should have contained at least 
 173 operations.  Our process in a nutshell, the system creates a batch, 
 which contains >=1 jobs, this particular job was part of a batch which 
 contained 218 jobs all of which finished with "Done" status and with N 
 number of operation results except this one, this particular one as you 
 now 
 know, has "Done" status with no operations.

 We have couple of more these instances, available upon request, 
 however, cannot easily get to log the upload operation for any scenarios 
 as 
 such, as said earlier this has happened/happens intermittently.

 On your side, would it be possible to clarify number of operations on 
 upload/active stages for the aforementioned job?

 regards,
 Zia

 On Friday, 5 August 2016 17:29:57 UTC+1, Michael Cloonan (AdWords API 
 Team) wrote:
>
> Hello,
>
> Under normal circumstances, the job shouldn't move to Done unless some 
> data has been provided and processed. That's why I'm so curious about 
> what 
> exactly made it into your request that allowed this to happen.
>
> Regards,
> Mike, AdWords API Team
>
> On Friday, August 5, 2016 at 11:03:35 AM UTC-4, xtcsuk wrote:
>>
>> Hi Mike,
>>
>> Thanks for the reply, our records show the job included some 
>> operations, but do not have the log to provide you with, will try to see 
>> if 
>> we can do this.
>> In the meantime, is it possible for a job change status from Active 
>> to Done with no operations attached to it?
>>
>> regards,
>> Zia
>>
>> On Friday, 5 August 2016 13:15:46 UTC+1, Michael Cloonan (AdWords API 
>> Team) wrote:
>>>
>>> Hello,
>>>
>>> I took a look at the log you provided. It appears that in the case 
>>> where the downloadUrl is omitted, there were also no operations 
>>> performed, 
>>> which means there would be no results to share via the downloadUrl 
>>> anyway. 
>>> Do you have logs of exactly what operations you uploaded for such a 
>>> job? 
>>> I'm not sure what would cause a job to kick off without having received 
>>> any 
>>> operations to perform, so I want to see if perhaps you're doing 
>>> anything 
>>> incorrect at that step in the process.
>>>
>>> Regards,
>>> Mike, AdWords API Team
>>>
>>> On Friday, August 5, 2016 at 7:33:18 AM UTC-4, xtcsuk wrote:

 Hi Pete,

 We are still suffering from batchjobservice returning null 
 downloadUrl (intermittently) for a completed (done) job, sent you the 
 soap 
 (request/response) privately, just wondering if you have received it.

 regards,
 Zia

 On Tuesday, 2 August 2016 04:09:00 UTC+1, Peter Oliquino wrote:
>
> Hi Zia,
>
> Feel free to 

Re: api version 201605

2016-08-09 Thread 'Michael Cloonan (AdWords API Team)' via AdWords API Forum
Hello,

The bug that caused this issue has still not been fully addressed. 
Engineering is hard at work on getting that in as soon as possible. This 
means that it is possible (but very unlikely) that a job with operations 
moves into a DONE status, but erroneously shows that it has no operations 
or download URL. This is what happened on your previous job.

In this case, the job likely finished successfully, but is simply reporting 
its results incorrectly. The engineering team can force the job to update 
from the backend and show its correct state, which is what they did for the 
one job you had reported where this happened.

If it happens again (hopefully it does not), let me know the job IDs and I 
can have engineering fix them as well. Otherwise, everything should be 
functioning normally.

Regards,
Mike, AdWords API Team

On Tuesday, August 9, 2016 at 1:47:13 PM UTC-4, xtcsuk wrote:
>
> Hi Mike,
>
> Thank you,
>
> As for the old jobs, they are no longer valid, as the system has moved on 
> with new changes.
> So, this has now been rectified, in case of a job with no operation, the 
> api will throw or something on upload, and will not move the job status 
> from pending to complete, right?
>
> regards,
> Zia
>
> On Tuesday, 9 August 2016 18:28:08 UTC+1, Michael Cloonan (AdWords API 
> Team) wrote:
>>
>> Hello,
>>
>> The engineering team has taken a look at your account and only identified 
>> the single ID that you had already provided as being affected by that 
>> issue. If you check it again, it should have results and a download URL.
>>
>> Please let me know if this recurs with any future jobs.
>>
>> Regards,
>> Mike, AdWords API Team
>>
>> On Monday, August 8, 2016 at 2:01:32 PM UTC-4, Michael Cloonan (AdWords 
>> API Team) wrote:
>>>
>>> Hello,
>>>
>>> The engineering team has confirmed that they are aware of a bug that can 
>>> put jobs into this state when they shouldn't be. They do have a process 
>>> they can perform on these "stuck" jobs to force them to return a correct 
>>> DownloadUrl.
>>>
>>> If you provide me with a complete list of jobs that have made their way 
>>> into this state, I can have engineering get them back on track for you.
>>>
>>> In the meanwhile, the team is working hard on getting a permanent fix in 
>>> place so this no longer happens going forward.
>>>
>>> Regards,
>>> Mike, AdWords API Team
>>>
>>> On Monday, August 8, 2016 at 8:17:52 AM UTC-4, Michael Cloonan (AdWords 
>>> API Team) wrote:

 Hello,

 I apologize for the back and forth. I've contacted our engineering team 
 to take a look at a specific job you provided and see if we can determine 
 exactly what is going wrong from there. I'll let you know if I need more 
 information from you or if I have any updates to share.

 Regards,
 Mike, AdWords API Team

 On Sunday, August 7, 2016 at 5:17:10 PM UTC-4, xtcsuk wrote:
>
> Thanks again for your reply.
>
> Based on our records that particular job should have contained at 
> least 173 operations.  Our process in a nutshell, the system creates a 
> batch, which contains >=1 jobs, this particular job was part of a batch 
> which contained 218 jobs all of which finished with "Done" status and 
> with 
> N number of operation results except this one, this particular one as you 
> now know, has "Done" status with no operations.
>
> We have couple of more these instances, available upon request, 
> however, cannot easily get to log the upload operation for any scenarios 
> as 
> such, as said earlier this has happened/happens intermittently.
>
> On your side, would it be possible to clarify number of operations on 
> upload/active stages for the aforementioned job?
>
> regards,
> Zia
>
> On Friday, 5 August 2016 17:29:57 UTC+1, Michael Cloonan (AdWords API 
> Team) wrote:
>>
>> Hello,
>>
>> Under normal circumstances, the job shouldn't move to Done unless 
>> some data has been provided and processed. That's why I'm so curious 
>> about 
>> what exactly made it into your request that allowed this to happen.
>>
>> Regards,
>> Mike, AdWords API Team
>>
>> On Friday, August 5, 2016 at 11:03:35 AM UTC-4, xtcsuk wrote:
>>>
>>> Hi Mike,
>>>
>>> Thanks for the reply, our records show the job included some 
>>> operations, but do not have the log to provide you with, will try to 
>>> see if 
>>> we can do this.
>>> In the meantime, is it possible for a job change status from Active 
>>> to Done with no operations attached to it?
>>>
>>> regards,
>>> Zia
>>>
>>> On Friday, 5 August 2016 13:15:46 UTC+1, Michael Cloonan (AdWords 
>>> API Team) wrote:

 Hello,

 I took a look at the log you provided. It appears that in the case 
 where the downloadUrl is omitted, there were also no operations 

Re: [BatchJobService] Platform Bid Adjustment

2016-08-09 Thread 'Shwetha Vastrad (AdWords API Team)' via AdWords API Forum
Hi Adrian,

BidModifiers for platforms other than HighEndMobile are currently available 
in Test accounts only. You can retrieve the Campaign and Ad Group 
bidModifiers using CampaignCriterionService 

 and 
the AdGroupBidModifierService 

 respectively, 
to see if the bid adjustments have been set correctly. This option is not 
yet available in the AdWords user interface. Please see this blog post 

 for 
more details. 

Regards,
Shwetha, 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/61e10280-9b17-4cf4-927c-bf0f8b12050a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Deprecation of Converted Clicks

2016-08-09 Thread 'Michael Cloonan (AdWords API Team)' via AdWords API Forum
Hello,

Older versions of the API will continue to support all fields they 
initially launched with unless we make a specific announcement about a 
change on our blog .

Please see our Deprecation Schedule 
 for a 
consolidated representation of all version-related deprecation dates we've 
published.

Regards,
Mike, AdWords API Team

On Tuesday, August 9, 2016 at 12:41:54 PM UTC-4, Stephen wrote:
>
> Hi all,
>
> I wanted to clarify on the deprecation of the field *"Converted clicks"*. 
> The latest version of the API 201607 has deprecated this field which is in 
> line with the interface that will no longer support past September 2016. 
>
> I wanted to clarify on the timeframe availability of the Converted clicks 
> field from the API if using older versions and for how long will this be 
> supported?
>
> I wanted know whether we have to pull a historical record of converted 
> clicks before September of will we have more time using older API versions.
>
> Many thanks,
> Stephen
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/6ba8d643-5794-4482-8ad4-b5ea9b486311%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


How do I get just the searchvolume of a particular keyword in python ?

2016-08-09 Thread veer . ladetm
Hello,
I have tried:
1. Function to get stats on keyword ideas related to the current keyword.
2. Traffic Estimator Function.

I want just the searchvolume for my list of keywords. I don't want to see 
the CPC, Position of the ad etc. Just the searchvolume total(organic + SEM).
I tried tweaking TargetIdeaservice but I could't get this information.

Help appreciated ASAP.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/30dcef3c-36ce-489b-b48e-219c70b37526%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Как сделать чтобы ответ приходил на английском языке

2016-08-09 Thread 'Josh Radcliff (AdWords API Team)' via AdWords API Forum
Hi,

I finally heard back on this one, and it looks like your user's language 
preferences are set to Russian (at least currently). Did you change them 
since your post in May? Also, are you continuing to see this issue?

Thanks,
Josh, AdWords API Team

On Monday, May 23, 2016 at 8:54:49 AM UTC-4, Josh Radcliff (AdWords API 
Team) wrote:
>
> Hi,
>
> No news yet, but I'll be sure to let you know as soon as I hear back on 
> the issue.
>
> Thanks,
> Josh, AdWords API Team
>
> On Monday, May 23, 2016 at 4:01:07 AM UTC-4, treto1ct...@gmail.com wrote:
>>
>> hi, there is news on the topic?
>> change any language settings do not solve the problem
>>
>> On Wednesday, May 18, 2016 at 12:58:53 AM UTC+3, Josh Radcliff (AdWords 
>> API Team) wrote:
>>>
>>> Hi,
>>>
>>> I'm following up with the engineers on this one. I'll reply back as soon 
>>> as I have an update.
>>>
>>> Thanks,
>>> Josh, AdWords API Team
>>>
>>> On Tuesday, May 17, 2016 at 2:39:41 AM UTC-4, treto...@gmail.com wrote:

 В аккаунте у меня был указан английский:


 
 НО все-равно сообщения приходят на русском языке. Видимо проблема в 
 чем-то другом.

 понедельник, 16 мая 2016 г., 16:09:07 UTC+3 пользователь Josh Radcliff 
 (AdWords API Team) написал:
>
> Hi,
>
> That determines the language preferences for the *AdWords user 
> interface*, but my theory is that the language settings that are 
> driving the language of the policy violation are from the Google 
> *account's* language settings.
>
> While logged in as the user whose OAuth credentials you are using, 
> please do the following:
>
>1. Go to accounts.google.com.
>2. Click on *Language & Input Tools* under *Account preferences*.
>3. Check if the language selected there is Russian.
>
> Thanks,
> Josh, AdWords API Team
>
> On Monday, May 16, 2016 at 2:45:30 AM UTC-4, treto...@gmail.com wrote:
>>
>> У меня в настройках аккаунта указан английский язык.
>>
>>
>> 
>> Или нужно не здесь устанавливать язык?
>>
>> воскресенье, 15 мая 2016 г., 20:19:21 UTC+3 пользователь Josh 
>> Radcliff (AdWords API Team) написал:
>>>
>>> Hi,
>>>
>>> Sorry, I can only answer in English, but I believe that the language 
>>> of the policy description and text is driven by the language settings 
>>> of 
>>> the OAuth credential's user. If you use OAuth credentials from a user 
>>> whose 
>>> language is set to English, you should get the policy error information 
>>> back in English.
>>>
>>> Regarding your other question, you can resubmit some operations that 
>>> failed due to policy violations by using exemption requests. Please see 
>>> the Exemption 
>>> Requests guide 
>>> 
>>>  for 
>>> more details.
>>>
>>> Thanks,
>>> Josh, AdWords API Team
>>>
>>> On Friday, May 13, 2016 at 3:22:22 AM UTC-4, treto...@gmail.com 
>>> wrote:

 Добрый день.
 Отправляю запрос на создание объявления:

 
> http://schemas.xmlsoap.org/soap/envelope/"; xmlns:v20="
> https://adwords.google.com/api/adwords/cm/v201603";>
>
>   
>   ххх-ххх-
>   
> хх
>   1cAdWords
>   false
>   false
>
>
>
>   https://adwords.google.com/api/adwords/cm/v201603";>
>  http://www.w3.org/2001/XMLSchema-instance";>
> ADD
> 
>22928495953
>https://adwords.google.com/api/adwords/cm/v201603"; 
> i:type="ns2:TextAd">
>   
>   http://tile.expert
> 
>   
> https://tile.expert/it/tile/Abita/Ego 
>   Piastrelle Ego di 
> Abita
>   Da 24 € Consegna in Italia 
> 10gg
>   Sito web con prezzi, foto, 
> ordini
>
>ENABLED
>
> 
>  
>   
>
> 


 В ответ получаю ответ с ошибкой:

> http://schemas.xmlsoap.org/soap/envelope/";>  
> xmlns="https://adwords.google.com/api/adwords/cm/v201603";>
> 000532b4046d72a80ac12c487f0b70b8
> AdGroupAdService
> mutate
> 

Re: API access to another MCC account

2016-08-09 Thread 'Vishal Vinayak (Adwords API Team)' via AdWords API Forum
Hi Yana,

There are two ways to access a third party's AdWords production account: 

1) If the third party has a developer token and are willing to share the 
token and OAuth credentials, use their token and OAuth credentials to 
access their account.

2) Alternatively, you can apply 
 for basic 
access on your own developer token and then ask the third party to  grant 
you access  on their 
AdWords account, using a new email id (not associated with an existing 
AdWords account). You can then create OAuth credentials 

 yourselves, 
and access the account using you own developer token and the newly created 
OAuth credentials.  

You can choose either option for test accounts too, only that for option 2, 
your existing developer token already has access to test accounts (i.e. you 
don't need to apply for basic access).

Hope this helps. Please feel free to revert in case you have more 
questions. 

Regards,
Vishal Vinayak, 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/d9e7f4af-86f0-4bd1-bf3c-57e18fc6e134%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: extracting campaign (or ad/adgroup etc.) focus

2016-08-09 Thread 'Vishal Vinayak (Adwords API Team)' via AdWords API Forum
Hi,

You can fetch the Bidding Strategy Type 
 
using 
the CampaignService 
.
 
The field *biddingStrategyConfiguration *in the campaign would return you 
the bidding strategy set for that campaign. 

Regards,
Vishal, 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/9e5c27d2-aa4b-4dcf-ae1d-b61df0c69390%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: How do I get just the searchvolume of a particular keyword in python ?

2016-08-09 Thread 'Anthony Madrigal' via AdWords API Forum
Hello Veer,

In order to get only the search volume for your keywords, you must select 
SEARCH_VOLUME 

 as 
one of your AttributeTypes and not any other the others such as AVERAGE_CPC 
in the TargetingIdeaService.

You can find how to select this field in our Python client library example 

.

Cheers,
Anthony
AdWords API Team

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

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


large number of cancelled batch jobs

2016-08-09 Thread GregT
Hi,

We released to production our upgrade from v201601 to v201605 last night, 
which forced us to move off the old MutateJobService and to the new 
BatchJobService for bulk operations. Since releasing last night, we've had 
over 400 jobs that have ended up with a status of CANCELED, even though we 
have not implemented any calls to ever cancel a job (so AdWords is doing 
the cancelling somehow internally). Could you please look into whether this 
is an issue on Google's side, or whether we're doing something wrong?  We 
have had plenty of successfully completed jobs as well, so I'm guessing 
it's not on our side.

Here's an example list of jobs ids:

339366001
339402945
339416306
339386008
339379522
339413811
339435749
339869207
339866315
339824274
339843428
339766141
339867824

These jobs range anywhere from 5,000 to 100,000 objects (all of the same 
type - either setting keyword bids or ad group level bid modifiers). There 
are even some (like the last one I listed) where the API returns that it 
was 100% successful, 100,000 items were executed, 100,000 items succeeded, 
and 100,000 results were written (and yet it was still canceled).

Thanks in advance,
Greg

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

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


Re: Targeting Idea Service STATS CollectionSizeError.TOO_MANY

2016-08-09 Thread Christian Semmler
I'm having the same issue.

Am Freitag, 5. August 2016 00:17:01 UTC+2 schrieb Alex Benusovich:
>
> I am getting a CollectionSizeError.TOO_MANY error when requesting stats 
> for 800 keywords since July 28th. Before that it was working fine.
>
> Documentation says 800 is the limit: 
> https://developers.google.com/adwords/api/docs/appendix/limits#targetingidea
>
> After some testing I determined the internal limit is now 700 (701 fails). 
> Is the limit 700 now?
>
> Thank!
>
>
>
>
> 
>
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/6cb46c40-853c-49ba-a27c-8763ddb0f33d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


I wanna know campaign daily budget range

2016-08-09 Thread smartdspdev
I just want to know specific maximum amount of campaign daily budget.

there is no document on Adwords api page.

so if you know, plz let me know.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/b3c7892b-0486-43f5-b418-5a918f93e9c1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: I wanna know campaign daily budget range

2016-08-09 Thread 'Peter Oliquino' via AdWords API Forum
Hi,

You may get the campaign daily budget from the Amount 

 field 
of the Campaign Performance Report 

.

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/1f5cf42f-c22b-490f-8ea5-5d7e6047220e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Create standalone (non-MCC) test account?

2016-08-09 Thread wang yuantao


Hi AdWords API team,

 

We are using production dev token to process MCC login and non-MCC login 
via CustomerService.

Now we want to add test using test account and test dev token.

However, according to

https://developers.google.com/adwords/api/docs/guides/accounts-overview#getting_started_with_test_accounts

It seems test account must be a test manager account or a client account 
under test manager account, which means in our test we can only cover MCC 
scenario.

Is there any way to create standalone (non-MCC) test account for testing?

 

Thanks,

Yuantao

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/a77a7c8d-26b6-4936-b38d-cd9db055cf68%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Create standalone (non-MCC) test account?

2016-08-09 Thread 'Joyce Lava' via AdWords API Forum
Hello Yuantao,

If you need to perform some tests, you can create the Test MCC account 
using this link 
 and 
then add test client accounts that it will manage. All client accounts 
created under a Test MCC account will automatically be marked as test 
accounts 
.
 
Please make sure to use a Google account that is not yet linked to any 
AdWords account. 

However, if you have an existing Test MCC account, you may use its test 
accounts to perform tests and make calls to AdWords API services by setting 
the test accounts as the *clientCustomerId* in the request. That said, you 
can cover test accounts scenario in your tests. Additionally, you can use 
the developer token of the production (non-test) MCC account as discussed 
in the table here 
.
 
You can use Approved developer token for both Test and Non-Test accounts.

Thanks,
Joyce, 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/ba07cb93-190b-431b-a47f-7be9ffb48e02%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


anyway to choose ios > 8.0?

2016-08-09 Thread maxSonic Sun
Hi,

According to the adwords 
document 
https://developers.google.com/adwords/api/docs/appendix/mobileplatforms, 
it seems that I can only select ios > 7.0 ? Anyway to choose a larger 
version number?


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/647c6267-88d2-407f-bd85-51b72f2999ee%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Support HD solution image for image ad?

2016-08-09 Thread maxSonic Sun


Hi,


I tried to create the HD solution image ad for an all feature display 
campaign, but failed.  However, in the UI page of adwords, that is a 
description saying that the HD solution is supported. But in the api 
document, unlike the one in template ads, there is no way to set the 
dimension for HD image. I have asked the support engineer in China for a 
long time, he said that adwords engineer will fix this bug in feature, 
However, there has been 5 months since I asked this question and google is 
not going to fix it? 








 








-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/f5af792e-022c-4fb3-89a4-4fd5f8c5bb43%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: anyway to choose ios > 8.0?

2016-08-09 Thread 'Peter Oliquino' via AdWords API Forum
Hi,

Unfortunately, the only OS versions currently supported are the ones listed 
in the guide and 7 is the latest for iOS. In the mean time, you may follow 
our blog  for any future updates 
or announcements.

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/abc3c97a-b85c-412d-a54a-72844ec50d47%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.