Re: How do Adparams works in Google Adwords PHP api

2011-05-27 Thread Gowri Sankar
Thanks for your Great replay that helped me a lot.Thats awesome.
And sorry for my late response.

i have removed the exclamation mark from the Ad heading.

And for testing the adwords with Ad Preview Tool in AdWords web
interface, i have not added any card information to my account. Can i
use this feature still or is there anything like sandbox for testing
purpose. since all my Ads are now only in sandbox.

Thanks.


On May 23, 7:40 pm, GemBox Software gemboxsoftw...@gmail.com wrote:
 Hi,

 this is probably not relevant to your question but text ad headline cannot
 contain exclamation point '!'. See AdWords Punctuation and
 symbolshttp://adwords.google.com/support/aw/bin/answer.py?hl=enanswer=176095
 .

 AdParam is identified by the ad group and keyword because you need some
 trigger to activate parametrization of your ad, and that trigger is keyword.

 I think you are on the right path.
 Your ad groups should be highly focused, with one-to-one relationship with
 your product categories, or even products themselves if they are relevant
 products.

 Ad groups should contain one or two ads. All ads should utilize ad
 parameters and they should only variate a little bit in headline and
 description lines.

 Keywords should be your product categories and their synonyms, or if you are
 targeting specific products you could even add product version and other
 info as keywords.

 If you are a local salesman, don't forget to add geotargeting to your
 campaigns!



 On Mon, May 23, 2011 at 3:14 PM, Gowri Sankar goy...@gmail.com wrote:
  Hi,

  I have 700 products to create ads each with different cost and year of
  make and i want to display this values in my ad and change them
  dynamically. so i have used adparams in the headline and in
  description1 as

   $textAd-headline = 'Sale!  productname {param1:2011} ';
   $textAd-description1 = 'For Just ${param2:25000}';

  as descried in the forums. and i have created set the adparams to the
  keywords.

  $adParam1 = new AdParam($adGroupId, $keywordId, $year, 1);
  $adParam2 = new AdParam($adGroupId, $keywordId, $price, 2);

     // Create operations.
     $adParamOperation1 = new AdParamOperation();
     $adParamOperation1-operand = $adParam1;
     $adParamOperation1-operator = 'SET';

     $adParamOperation2 = new AdParamOperation();
     $adParamOperation2-operand = $adParam2;
     $adParamOperation2-operator = 'SET';

  since adparams is related to keywords and keywords related to adgroup
  and not ads, I have created adgroup for each ad(so that i have 700
  adgroups). And each adgroup has a Ad with a related keyword. Now when
  i get the ads using the api.

  I get something like this

  
  [ad] = TextAd Object
         (
             [headline] = Sale! product {param1:2011}
             [description1] =  Just ${param2:25000}
             .

  the param strings are shown as such, i could not determine whether the
  adparams, works correctly and also im not confident that i'm in the
  right path. Please help me in doing this.

  Thanks in advance.

  --
  =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
  Also find us on our blog and discussion group:
 http://adwordsapi.blogspot.com
 http://groups.google.com/group/adwords-api
  =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

  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

 --
 AdWords API in C# / VB.NET
 http://www.gemboxsoftware.com/Ppc/Overview.htm adCenter
 API in C# / VB.NET http://www.gemboxsoftware.com/Ppc/Overview.htm -
 GemBox.Ppc component

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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


v201101 Cross-client report download problem

2011-05-27 Thread Dmitriy
Hello.

When I try to download created cross-client report using
DownloadCrossClientReport.php example, it returns
200 error: Syncronous report found, use DownloadReport() instead.
So I thought what's ok, just some mess up with examples and try to use
DownloadReport.php example instead.

But get this:
200 error: AuthenticationError.CLIENT_CUSTOMER_ID_IS_REQUIRED

So I put the clientId equal MCC client id into settings.ini

Now, then I use RunAsyncReport(), it says use DownloadReport(),

BUT THEN I USE DownloadReport() IT SAYS USE RunAsyncReport()!!!
(200 error: Asyncronous report found, use RunAsyncReport() instead.)

Please,  advise!

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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


Re: v201101 Cross-client report download problem

2011-05-27 Thread GemBox Software
Hi,

MCC reports is still under development and is subject to change. Future
release of this feature will be announced on the Adwords API
Bloghttp://adwordsapi.blogspot.com/
.

On Fri, May 27, 2011 at 9:32 AM, Dmitriy imediamos...@gmail.com wrote:

 Hello.

 When I try to download created cross-client report using
 DownloadCrossClientReport.php example, it returns
 200 error: Syncronous report found, use DownloadReport() instead.
 So I thought what's ok, just some mess up with examples and try to use
 DownloadReport.php example instead.

 But get this:
 200 error: AuthenticationError.CLIENT_CUSTOMER_ID_IS_REQUIRED

 So I put the clientId equal MCC client id into settings.ini

 Now, then I use RunAsyncReport(), it says use DownloadReport(),

 BUT THEN I USE DownloadReport() IT SAYS USE RunAsyncReport()!!!
 (200 error: Asyncronous report found, use RunAsyncReport() instead.)

 Please,  advise!

 --
 =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
 Also find us on our blog and discussion group:
 http://adwordsapi.blogspot.com
 http://groups.google.com/group/adwords-api
 =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

 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




-- 
AdWords API in C# / VB.NET
http://www.gemboxsoftware.com/Ppc/Overview.htm adCenter
API in C# / VB.NET http://www.gemboxsoftware.com/Ppc/Overview.htm -
GemBox.Ppc component

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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


Re: How do Adparams works in Google Adwords PHP api

2011-05-27 Thread GemBox Software
Hi,

Sandbox text ads cannot be viewed with Ad Preview Tool in AdWords web
interface, and I think there is no other way to preview text ads with ad
params in sandbox.

On Fri, May 27, 2011 at 8:10 AM, Gowri Sankar goy...@gmail.com wrote:

 Thanks for your Great replay that helped me a lot.Thats awesome.
 And sorry for my late response.

 i have removed the exclamation mark from the Ad heading.

 And for testing the adwords with Ad Preview Tool in AdWords web
 interface, i have not added any card information to my account. Can i
 use this feature still or is there anything like sandbox for testing
 purpose. since all my Ads are now only in sandbox.

 Thanks.


 On May 23, 7:40 pm, GemBox Software gemboxsoftw...@gmail.com wrote:
  Hi,
 
  this is probably not relevant to your question but text ad headline
 cannot
  contain exclamation point '!'. See AdWords Punctuation and
  symbols
 http://adwords.google.com/support/aw/bin/answer.py?hl=enanswer=176095
  .
 
  AdParam is identified by the ad group and keyword because you need some
  trigger to activate parametrization of your ad, and that trigger is
 keyword.
 
  I think you are on the right path.
  Your ad groups should be highly focused, with one-to-one relationship
 with
  your product categories, or even products themselves if they are relevant
  products.
 
  Ad groups should contain one or two ads. All ads should utilize ad
  parameters and they should only variate a little bit in headline and
  description lines.
 
  Keywords should be your product categories and their synonyms, or if you
 are
  targeting specific products you could even add product version and other
  info as keywords.
 
  If you are a local salesman, don't forget to add geotargeting to your
  campaigns!
 
 
 
  On Mon, May 23, 2011 at 3:14 PM, Gowri Sankar goy...@gmail.com wrote:
   Hi,
 
   I have 700 products to create ads each with different cost and year of
   make and i want to display this values in my ad and change them
   dynamically. so i have used adparams in the headline and in
   description1 as
 
$textAd-headline = 'Sale!  productname {param1:2011} ';
$textAd-description1 = 'For Just ${param2:25000}';
 
   as descried in the forums. and i have created set the adparams to the
   keywords.
 
   $adParam1 = new AdParam($adGroupId, $keywordId, $year, 1);
   $adParam2 = new AdParam($adGroupId, $keywordId, $price, 2);
 
  // Create operations.
  $adParamOperation1 = new AdParamOperation();
  $adParamOperation1-operand = $adParam1;
  $adParamOperation1-operator = 'SET';
 
  $adParamOperation2 = new AdParamOperation();
  $adParamOperation2-operand = $adParam2;
  $adParamOperation2-operator = 'SET';
 
   since adparams is related to keywords and keywords related to adgroup
   and not ads, I have created adgroup for each ad(so that i have 700
   adgroups). And each adgroup has a Ad with a related keyword. Now when
   i get the ads using the api.
 
   I get something like this
 
   
   [ad] = TextAd Object
  (
  [headline] = Sale! product {param1:2011}
  [description1] =  Just ${param2:25000}
  .
 
   the param strings are shown as such, i could not determine whether the
   adparams, works correctly and also im not confident that i'm in the
   right path. Please help me in doing this.
 
   Thanks in advance.
 
   --
   =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
   Also find us on our blog and discussion group:
  http://adwordsapi.blogspot.com
  http://groups.google.com/group/adwords-api
   =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
 
   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
 
  --
  AdWords API in C# / VB.NET
  http://www.gemboxsoftware.com/Ppc/Overview.htm adCenter
  API in C# / VB.NET http://www.gemboxsoftware.com/Ppc/Overview.htm -
  GemBox.Ppc component

 --
 =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
 Also find us on our blog and discussion group:
 http://adwordsapi.blogspot.com
 http://groups.google.com/group/adwords-api
 =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

 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




-- 
AdWords API in C# / VB.NET
http://www.gemboxsoftware.com/Ppc/Overview.htm adCenter
API in C# / VB.NET http://www.gemboxsoftware.com/Ppc/Overview.htm -
GemBox.Ppc component

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find 

Re: TargetingIdeaService - IdeaTextMatchesSearchParameter filters all results out with included on Sandbox

2011-05-27 Thread GemBox Software
Hi,

are you sure that you are using sandbox environment?

Because in Sandbox
Behaviorhttp://code.google.com/apis/adwords/docs/sandbox.html#behaviordocument
it writes that returned ideas will be of the form {sample keyword
0, sample keyword 1, ...}. Returned attributes will contain random
values.

On Fri, May 27, 2011 at 12:33 AM, Robert Paveza robpav...@gmail.com wrote:

 Hello,

 I've been working on some testing with the sandbox API for Adwords.  I'd
 been getting promising results from TargetingIdeaService (of course, it's
 garbage for now, but it seems to work).  I based my initial code on a Google
 blog entry about using the TargetingIdeaService to get keyword suggestions
 based on a seed word or phrase.  To test, I used the same seed as the demo
 in the blog - cheap airline tickets - and plugged this into the Keyword
 Tool.  This gives me results such as very cheap airline tickets, cheap
 airline ticket, super cheap airline tickets, cheap airline tickets to
 hawaii, etc.

 However, my task is to get other results.  My colleagues suggested that,
 within the Keyword Tool, if I added in who, what, where, when,
 why, and how into the Include Terms field, I would get the desired
 results.  And in fact, I do - where to find cheap airline tickets, how to
 buy cheap airline tickets, how to get cheap airline tickets, etc.  These
 are the desired results.

 Now, I don't expect to get these particular results back when using the
 sandbox API.  However, I would expect some results.  Essentially, what I do
 is:

- Request cheap airline tickets as the Keyword
(RelatedToKeywordSearchParameter), matching Broad.
- Language Target is en
- Country Target is US

 This gives me back 300 results.  Then I add in
 IdeaTextMatchesSearchParameter as a parameter.  I specify:

- included is a string array of who what where when why and
how.  I've also put in a single item array herring since a bunch of the
sandbox API results say red herring or some such
- excluded, I have switched between being null or an empty array, and
also tried garbage afkjdjfl;kasdjfsa or something like that.
- priorityAction set to Include.

 Here is my SOAP request:

 ?xml version=1.0 encoding=utf-8?
 soap:Envelope xmlns:soap=http://schemas.xmlsoap.org/soap/envelope/;
 xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
 xmlns:xsd=http://www.w3.org/2001/XMLSchema;
   soap:Header
 RequestHeader xmlns=https://adwords.google.com/api/adwords/o/v201008
 

   authToken xmlns=https://adwords.google.com/api/adwords/cm/v201008
 
   (removed)/authToken
   developerToken xmlns=
 https://adwords.google.com/api/adwords/cm/v201008;
   ENTER_YOUR_DEVELOPER_TOKEN_HERE/developerToken
   clientEmail xmlns=
 https://adwords.google.com/api/adwords/cm/v201008;
   (removed)/clientEmail
   userAgent xmlns=https://adwords.google.com/api/adwords/cm/v201008
 
   AwApi-DotNet-12.2.0|(removed)/userAgent
 /RequestHeader
   /soap:Header
   soap:Body
 get xmlns=https://adwords.google.com/api/adwords/o/v201008;
   selector
 searchParameters xsi:type=RelatedToKeywordSearchParameter

   keywords
 text xmlns=https://adwords.google.com/api/adwords/cm/v201008
 
 cheap airline tickets/text
 matchType xmlns=
 https://adwords.google.com/api/adwords/cm/v201008;
 BROAD/matchType
   /keywords
 /searchParameters
 searchParameters xsi:type=LanguageTargetSearchParameter
   languageTargets
 languageCode xmlns=
 https://adwords.google.com/api/adwords/cm/v201008;
 en/languageCode
   /languageTargets
 /searchParameters
 searchParameters xsi:type=CountryTargetSearchParameter
   countryTargets
 countryCode xmlns=
 https://adwords.google.com/api/adwords/cm/v201008;
 US/countryCode
   /countryTargets
 /searchParameters
 searchParameters xsi:type=IdeaTextMatchesSearchParameter

   includedwho/included
   includedwhat/included
   includedwhere/included
   includedwhen/included
   includedwhy/included
   includedhow/included
   priorityActionINCLUDE/priorityAction
 /searchParameters
 ideaTypeKEYWORD/ideaType
 requestTypeIDEAS/requestType
 requestedAttributeTypesKEYWORD/requestedAttributeTypes
 requestedAttributeTypes
 AVERAGE_TARGETED_MONTHLY_SEARCHES/requestedAttributeTypes
 requestedAttributeTypes
 IDEA_TYPE/requestedAttributeTypes
 requestedAttributeTypes
 COMPETITION/requestedAttributeTypes
 requestedAttributeTypes
 GLOBAL_MONTHLY_SEARCHES/requestedAttributeTypes
 requestedAttributeTypes
 KEYWORD_CATEGORY/requestedAttributeTypes
 requestedAttributeTypes
 TARGETED_MONTHLY_SEARCHES/requestedAttributeTypes
 requestedAttributeTypes
   

Re: Manage multiple client accounts

2011-05-27 Thread GemBox Software
Hi,

please see DotNet client Wiki How to use
AdWordsUserhttp://code.google.com/p/google-api-adwords-dotnet/wiki/HowToUseAdWordsUser
.

On Wed, May 25, 2011 at 1:55 PM, himan...@ranosys.com
himan...@ranosys.comwrote:

 Hi,

 I am working on adwords API and performing operations like report
 fetch and pause operations on keyword and adgroups. But there is one
 problem. I am using .net client library. And in this library it always
 takes client email address from we.config file. And we can specify
 only one email in web.config.

 I want to manage multiple client accounts through my application.
 please tell me how can I achieve this.

 Thanks!

 --
 =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
 Also find us on our blog and discussion group:
 http://adwordsapi.blogspot.com
 http://groups.google.com/group/adwords-api
 =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

 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




-- 
AdWords API in C# / VB.NET
http://www.gemboxsoftware.com/Ppc/Overview.htm adCenter
API in C# / VB.NET http://www.gemboxsoftware.com/Ppc/Overview.htm -
GemBox.Ppc component

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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


Re: Download campaign reports automatically, without having to identify every day on the web.

2011-05-27 Thread Betiko
Lot of thanks Pete
if i have some questions, can i ask you about this?

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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


Partial failure acceptance in v201101

2011-05-27 Thread Panks
Hi All,
We recently ported our code to v201101 Apis. I was wondering to what
extant is it possible to support partial failures in v201101.
In v2008 Partials failures were supported for AdGroupCriterions. Do we
have support for partial failures in AdGroupAdService ?

Is there any chance for supporting Partial Failures in BulkMutate
Operation? Or it exists already ?


Thanks

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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


Re: Search Query Report Returning Blank Data

2011-05-27 Thread Pete Lavetsky (AdWords API Guru)
Is the campaign allowed on the content network?

Pete

On May 26, 6:01 pm, KenMed kenme...@gmail.com wrote:
 I've recently started getting Search Query Reports that have Query= for a
 number of entries returned.

 This started happening on 5/16/2011 and has been getting worse each day
 (more Query= entries per report).

 When I searched through old reports (going back through 2010) there were no
 Query= entries. All entries had some type of valid Query assigned to them.

 Here's an example of a blank entry (I blanked out identifying info):

 row date=2011-04-27 campaignid=xx campaign=yy
 adgroup=zz Query= queryMatchType=Broad creativeid=
 adDistributionWithSearchPartners=Search Partners agStatus=Paused
 campStatus=Active dvType=Web imps=1 clicks=0 ctr=0.0 cpc=0
 cost=0 pos=3.0 conv=0 convRate=0.0 costPerConv=0/row

 Any idea what's going on?

 Thanks

 Ken

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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


Re: Download campaign reports automatically, without having to identify every day on the web.

2011-05-27 Thread Pete Lavetsky (AdWords API Guru)
Yes, you can email me.

Pete

On May 27, 4:58 am, Betiko betospence...@gmail.com wrote:
 Lot of thanks Pete
 if i have some questions, can i ask you about this?

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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


clientCustomerId only account and mcc reports

2011-05-27 Thread rp
Hi,

Now it is possible to create accounts without client email and this
raise question about cross clients report fetching for sych accounts:
In DefinedReportJob (v13) there is a clientEmails constraint allowing
us to specify which accounts should be included in cross client
report, how can we include account in report if this account does not
possess client email ?

Radek

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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


Re: Ad Params are not displaying correctly when uploaded

2011-05-27 Thread tank104
I have just received an email from adwords API support that this bug
has now feed fixed, will test when back at work tuesday.


On May 23, 7:36 pm, Eric Koleda eric.kol...@google.com wrote:
 Hi All,

 I haven't been able to replicate this behavior on my own account.  Can you
 provide the request ID or sanitized SOAP XML request and response for a
 request the exhibits this behavior?

 Best,
 - Eric Koleda, AdWords API Team

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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


Re: Whats up with AdParamService???

2011-05-27 Thread tank104
Hi guys,
I hae just received the following email from AdWords API Support

The issue should be fixed now. Please let us know if it is not the
case.


Best regards,
  XXX, AdWords API Team.

Would like to know what was wrong and what was affected - alas don't
think thats going to happen


On May 23, 7:36 pm, Eric Koleda eric.kol...@google.com wrote:
 Hi All,

 I haven't been able to replicate this behavior on my own account.  Can you
 provide the request ID or sanitized SOAP XML request and response for a
 request the exhibits this behavior?

 Best,
 - Eric Koleda, AdWords API Team

On May 24, 11:26 pm, Eric Koleda eric.kol...@google.com wrote:
 Hi All,

 Thanks for the extra details.  I'll pass this on to the core engineering
 team and let you know when I have more information.

 Best,
 - Eric

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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


Still waiting for approval, HELP!!

2011-05-27 Thread supp...@tlsubmit.com
Hello there,

I have been waiting for approval for about 4 weeks now.

Any chance some one could tell me when i am going to get approved
because we are getting
really frustrated on how long this takes!

my account email is supp...@tlsubmit.com

Thanks

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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


Update array of Adgroups statuses

2011-05-27 Thread opalepatrick
Hi,

I can see how I would go about updating the status of one adgroup in the php 
code example UpdateAdgroup.php. How would I update hundreds of groups from 
an array of hundreds of adGroupId's and mutate as single operation? Problem 
I have is that I am not sure what elements need to be looped before passing 
to the operation array.

Any help appreciated.

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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


Re: TargetingIdeaService - IdeaTextMatchesSearchParameter filters all results out with included on Sandbox

2011-05-27 Thread Robert Paveza
Yes.  I'm in the sandbox environment.  My Fiddler capture says it went
to 
https://adwords-sandbox.google.com/api/adwords/o/v201008/TargetingIdeaService.

I have tested random sandbox results like I said.  I saw frequent
results of red herring in the results, so I tried using herring as
an option in the Includes list.

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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


Re: TargetingIdeaService KEYWORD missing in WSDL?

2011-05-27 Thread Robert Paveza
Thanks, Pete - perfect!

On May 26, 6:52 pm, Pete Lavetsky (AdWords API Guru)
pete.lavet...@gmail.com wrote:
 It was changed to AttributeType.CRITERION in v2011

 Pete

 On May 26, 7:12 pm, Robert Paveza robpav...@gmail.com wrote:







  In the v201101 version of the TargetingIdeaService doesn't seem to include
  the KEYWORD attribute type for the *requestedAttributeTypes* attribute of
  TargetingIdeaSelector.  It's also missing from the documentation as part of
  Type_AttributeMapEntry 
  athttp://code.google.com/apis/adwords/docs/reference/latest/TargetingId...,
  but it does appear in v201008 
  -http://code.google.com/apis/adwords/docs/reference/v201008/TargetingI
   Consequently, it also doesn't appear in the .NET wrapper API.

  As a result, I've had to use the v201008 version of the service.  That is
  fine for now, but is this an oversight or is KEYWORD missing intentionally.
   It seems difficult to use for getting keyword ideas if this attribute is
  missing - am I missing an alternative?

  Thanks,
  -Rob Paveza

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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


Re: Dynamic Flash Ad

2011-05-27 Thread Eric Koleda
Hi All,

My apologies, Kevin and I had mistakenly said that ImageAds didn't support 
FLASH media, but upon further investigation they do.  The UI allows you to 
upload a SWF file for an ImageAd, and the MediaService should allow you to 
upload them as well.  Let me know if you have any problems using this 
functionality.

Best,
- Eric Koleda, AdWords API Team

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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


Re: Missing row in v201101 keywords performance report vs. ad performance report

2011-05-27 Thread Eric Koleda
Hi,

The field will always be keywordId in the downloaded report, but the ID 
might actually correspond to a non-keyword type of criteria, such as a 
placement, user list, etc.  You can use the AdGroupCriterionService to get 
more information about the missing criteria.

Best,
- Eric

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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


It's 2011, please make a REST API.

2011-05-27 Thread Ryan Romanchuk
Why are you doing this to developers? :( 

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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


Re: It's 2011, please make a REST API.

2011-05-27 Thread Joshua J. Kugler
On Friday 27 May 2011, Ryan Romanchuk elucidated thus:
 Why are you doing this to developers? :(

While I would argue that with the right libraries, SOAP isn't that 
painful (Suds on Python in my case), I would still add my voice to 
those that would desire to see a REST/JSON interface.  That would be 
just spiffy! :)

To those of you hand-constructing XML to send as your request: Stop it. 
Just stop it. :)

j

-- 
Joshua Kugler
Part-Time System Admin/Programmer
http://www.eeinternet.com - Fairbanks, AK
PGP Key: http://pgp.mit.edu/  ID 0x73B13B6A

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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


Re: Partial failure acceptance in v201101

2011-05-27 Thread Panks
Any takers for this query.

Thanks in Advance.
Pankaj

On May 27, 5:15 pm, Panks pankaj@googlemail.com wrote:
 Hi All,
 We recently ported our code to v201101 Apis. I was wondering to what
 extant is it possible to support partial failures in v201101.
 In v2008 Partials failures were supported for AdGroupCriterions. Do we
 have support for partial failures in AdGroupAdService ?

 Is there any chance for supporting Partial Failures in BulkMutate
 Operation? Or it exists already ?

 Thanks

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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