Re: returnMoneyInMicros doesn't appear to work

2010-11-12 Thread AdWords API Advisor
Hi,

It appears the returnMoneyInMicros header is currently case-sensitive,
and a capital 'R' will cause the header to not be recognized.  The
HTTP spec says that header names are case-sensitive, but this
obviously poses a problem for you since your library appears to be
applying its own capitalization rules.  I'll work with the core
engineering team to make this case insensitive, but in the mean time
you may want to look into alternatives.

Best,
- Eric

On Nov 11, 6:30 pm, dkasak  wrote:
> Hmm.
>
> I've dumped the headers from my HTTP get, and I can only see a very
> minor difference:
>
> ---
>
> GEThttps://adwords.google.com/api/adwords/reportdownload?__rd={snipped}
> Pragma: no-cache
> Authorization: GoogleLogin auth={snipped}
> ClientEmail: {snipped}
> ReturnMoneyInMicros: true
>
> (no content)
>
> ---
>
> clientEmail and returnMoneyInMicros have different capitalization ...
> mine have leading capitals. I'm setting the headers correctly, but our
> HTTP::Request seems to be altering the capitalization.
>
> Is this significant? The clientEmail bit works ... if I omit this, it
> fails completely, so I believe the headers aren't case-sensitive?
> Anyway, I'm still unable to fetch currency data in micros :(

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Help changing campaign from ConversionOptimizer => ManualCPC using BiddingTransition

2010-11-12 Thread AdWords API Advisor
Hi Gerard,

The documentation indicates that explicitAdGroupBids are optional when
doing a conversion from ConversionOptimizer to ManualCPC, but some
investigation reveals indicated that it might be incorrect.  If you
leave out explicitAdGroupBids does the request succeed?

Best,
- Eric Koleda, AdWords API Team

On Nov 11, 3:52 pm, Gerard Escalante 
wrote:
> Hi,
>
> We're attempting to convert a campaign from Conversion Optimizer to
> ManualCPC bidding. According to the documentation, we're supposed to
> use a BiddingTransition, but we aren't having much luck in doing so. We
> are getting an BiddingTransitionError.CANNOT_SET_EXPLICIT_BID error,
> but aren't sure what that signifies.
>
> Can someone point out what we're doing wrong?
>
> Thanks,
>
> Gerard Escalante
>
> Request:
> 
>  xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/";
> xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/";
> xmlns:ZSI="http://www.zolera.com/schemas/ZSI/";
> xmlns:xsd="http://www.w3.org/2001/XMLSchema";
> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
> 
>  xmlns="https://adwords.google.com/api/adwords/cm/v200909";>
> xx
> AWAPI PyLib v11.1.1: Test Client
> x
> 
> 
>  xmlns:ns1="https://adwords.google.com/api/adwords/cm/v200909";>
>  xmlns:ns1="https://adwords.google.com/api/adwords/cm/v200909";>
> 
> SET
> 
> 
> 
> 
> 
> 
> 500
> 
> 
> 
> 
> 
> 54785282
> xx
> ACTIVE
> 
> DAILY
> 
> 7000
> 
> ACCELERATED
> 
> ROTATE
> 
> 
> 
> 
> 
>
> Response:
> 
>  xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/";> xmlns="https://adwords.google.com/api/adwords/cm/v200909";>097d05c42e17022f5c241ab74ffee73d1  rations>4741 soap:Header>soap:Server string>[BiddingTransitionError.CANNOT_SET_EXPLICIT_BID @
> operations[0].biddingTransition.explicitAdGroupBids]< 
> ApiExceptionFault
> xmlns="https://adwords.google.com/api/adwords/cm/v200909";>[BiddingTransitionError.CANNOT_SET_EXPLICIT_BID
>  @
> operations[0].biddingTransition.explicitAdGroupBids] xception.Type>ApiException xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
> xsi:type="BiddingTransitionError">operations[0].biddingTransitio 
> n.explicitAdGroupBidsBiddingT 
> ransitionErrorCANNOT_SET_EXPLICIT_BID ors>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: trying to instantiate a new AdStatsSelector and getting error

2010-11-12 Thread AdWords API Advisor
Hi Alex,

The AdStatsSelector is part of the AdGroupAdService, and you are only
loading the AdGroupService.

Best,
- Eric Koleda, AdWords API Team

On Nov 11, 3:17 pm, Alex Pletnev  wrote:
> my php code is:
>
> $adGroupService = $user->GetAdGroupService('v201008');
> $campaignId = (float) '63838664';
> // Create selector.
> $adSelector = AdStatsSelector();
>
> and error is :
>
> PHP Fatal error: Class 'AdStatsSelector' not found
> in /home/alex/Projects/coder/murrayg/adwords/1.php on line 46
>
> also tried $user->GetAdGroupService('v200909');
>
> with the same result

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Auth tokens not expiring?

2010-11-12 Thread AdWords API Advisor
Hi Reed,

That is not the expected behavior, all previously fetched authTokens
should start failing after a password change.  I ran a test with my
own account and this behavior was observed.  Can you confirm that the
password was changed for the account that the authToken was generated
for, and not the account that is referenced in the clientEmail /
clientCustomerId header?

Best,
- Eric Koleda, AdWords API Team

On Nov 11, 9:35 am, Reed  wrote:
> It appears that the auth token continues to work for adwords API calls
> even after the adwords password has been changed for the account.  I
> have an account whose password was changed yesterday without my
> knowing about it. My daily job to get the latest auth token failed for
> that account, but the rest of my jobs that pull data, request reports,
> etc., using the last good auth token (from the previous day) are
> working just fine.  Is this the expected behavior?
>
> thanks,
> -reed

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: unexpected "Too many ad groups in this campaign" error

2010-11-12 Thread AdWords API Advisor
Hi Philip,

I haven't heard any other reports of this issue, but I can look into
it.  Can you post the request ID of a request that exhibits this
behavior?

Best,
- Eric Koleda, AdWords API Team

On Nov 11, 1:25 am, Philip  wrote:
> We have automated ads to stay in sync with our inventory system. We
> have an account with a number of campaigns. We fill each campaign with
> 2,000 ad groups (the maximum allowed) where each ad group represents
> one part from our inventory system.
>
> Parts go in and out of stock. We only actively advertise parts that are
> in stock. When parts go out-of-stock, we pause the associated ad group
> for the part.
>
> I was surprised to learn today that when I go to re-enable a paused ad
> group, I get the error "Too many ad groups in this campaign". The
> campaign has 2,000 ad groups (including all statuses). Adwords must do
> something like temporarily create an ad group when enabling an already
> existing ad group that was paused.
>
> Please let me know what I can do to fix this error. For example, can I
> request an increase to the limit on the number of ad groups per
> campaign? Is this a bug that can be fixed by Google?
>
> Any help is 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: average positon

2010-11-12 Thread Farid Parvini
Hi ,
How can I find the parameters that I need for auth.ini  + $adGroupId ???!

userAgent =
applicationToken =
developerToken = "


clientId = "864-656-8289"


Regards

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Auth token exception on one of our servers

2010-11-12 Thread bluesman
We reset our password and it works now. This issue can be closed.
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


Adword API - Worst documentation and support I have ever seen

2010-11-12 Thread Farid Parvini
To whom it may concern

Google adword API documentation and support is the worst I have ever seen.
Our company paid over $60,000 to google last month for adwords for over 100
customers that we have and this is the service/support that we are getting
!

I have been working as senior software engineer with many many systems,
still using this API is ridiculously and unnecessarily challenging ,

what is my adgroup id , where should I get my developerToken , what is the
definition of 'criterion id', what does it have to do with my keywords 

This is the only document I could find
http://code.google.com/p/google-api-adwords-php/source/browse/trunk/README

Thanks support team for your generosity  publishing this!

I just need a simple php code to get my keywords and their average position
, is it that hard?

I kept asking this and I was referred to
http://code.google.com/apis/adwords/docs/appendix/reports.html#keywords
and
http://code.google.com/apis/adwords/docs/reference/latest/AdGroupCriterionService.Stats.html#averagePosition

I could find those myself, but how should I use the report, where is the
document!?! where is a simple clear example with documentations!
Please don't refer me to existing examples,  there is no well documented to
show how to use it.

Got sick and tired of 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


Auth token exception on one of our servers

2010-11-12 Thread bluesman
Hello,

One of our servers is having issues connecting to the adwords api
being flagged with a rejected Auth Token. On investigating we noticed
that your server is returning a 403 error along with the following
exception


com.google.api.adwords.lib.AuthTokenException: Auth token could not be
retrieved because of error: BadAuthentication
at com.google.api.adwords.lib.AuthToken.getAuthToken(AuthToken.java:
128)

UserName: icrossingcampa...@icrossing.com

This seems to have started either last night or this morning and we
were wondering if there are any issues that we may not be handling?

Thanks,
Anoop

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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


Bug returning averagePosition

2010-11-12 Thread Farid Parvini
Hi,

I have this code ,

  $selector = new AdGroupCriterionSelector();

  // Create id filter.
  $idFilter = new AdGroupCriterionIdFilter();
  $idFilter->adGroupId = $adGroupId;
  $selector->idFilters = array($idFilter);

  // Get all ad group criteria.
  $page = $adGroupCriterionService->get($selector);

  // Display ad group criteria.
  if (isset($page->entries)) {
foreach ($page->entries as $adGroupCriterion) {
  print '"'
  . $adGroupCriterion->adGroupId . '", criterion id: "'
  . $adGroupCriterion->criterion->id . ', Keyword:  "'
  . $adGroupCriterion->criterion->text . "\", average position "
. $adGroupCriterion->stats->averagePosition  . ", amount "
  . $adGroupCriterion->firstPageCpc->amount . ", microAmount "
  . $adGroupCriterion->bids->maxCpc->amount->microAmount . ".\n";



BUT it doesn't return averagePosition

This is the XML

http://www.w3.org/2001/XMLSchema-instance";
xsi:type="BiddableAdGroupCriterion">
  195943856
  
10191510
Keyword
dental
BROAD
  

 BiddableAdGroupCriterion
  DELETED
  

 
ManualCPCAdGroupCriterionBids

  1
  10

false
  
  
SEARCH
Stats
  




Any help is 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: Getting automatic placements via 201008 API

2010-11-12 Thread DaveOz
Hi Eric,
Is there any estimate on how long this might take to resolve?

On Oct 29, 7:17 pm, AdWords API Advisor 
wrote:
> Hi Dave,
>
> I've dug into this a bit, and it looks like this report isn't behaving
> correctly at the moment.  It seems to only be returning the domains
> that were onceautomaticplacementsbut have since been converted into
> manualplacements.  It is showing the correct stats for theseplacements, but 
> it's certainly not the expected set of results.  I'll
> work with the core engineering team to isolate the issue and I'll
> update this thread 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


TOO_FEW_OPERATIONS_IN_JOB

2010-11-12 Thread mariek
I have a question concerning this errror TOO_FEW_OPERATIONS_IN_JOB
Is this limitation applied on LIVE yet ? Because when I created Job
with 13 operations
it succeeded.
Doing this on Sandbox I receive Error.

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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


TOO_FEW_OPERATIONS_IN_JOB

2010-11-12 Thread mariek
I have a question concerning this errror TOO_FEW_OPERATIONS_IN_JOB
Is this applied on LIVE yet ? Because I create Job with 13 operations
it succeed.
Doing this on Sandbox I receive Error.


-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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


Failed to get authToken. Reason: couldn't connect to host

2010-11-12 Thread siva'
i am getting this message when i am running GetAllCampaigns.php

Failed to get authToken. Reason: couldn't connect to host

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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


Creating & linking Adwords account under MCC using API

2010-11-12 Thread ad...@et-ppc.com
Hello,

I am trying to build an application to manage ad campaigns for my
customers using API. However since I can add only 25 campaigns to an
account, I wanted to ask if it is possible to create and add another
account to my MCC account using API calls? If yes, please guide me to
the documentation or example which can help me.

Otherwise, please advise me as to how can I manage multiple campaigns
for my customers with API without having to use the MCC dashboard if
the number of customers crosses the maximum limit of 25.

Thanks & Regards,
ET PPC Admin

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: No API Center under My Account?

2010-11-12 Thread Mike Miller
I have the same problem as Pete... I want to sign up for the Adwords
Api but I dont see any Api Section in my Adwords area.. I tried to
create a new MCC account but the site says that my emails is already
attached to an MCC account... and if I sign in using the email, i will
be redirected to the adwords with the new design without API...

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: bulk mutate in sandbox problem

2010-11-12 Thread mariek
Yes, right. Thanks.
I was mislead because in v200909 it was only working when setting to
0.


On 11 Lis, 00:10, AdWords API Advisor 
wrote:
> Hi Mariek,
>
> I believe the error is referring to a bad ID in the scopingEntityId of
> the OperationStearm:
>
>             
>               
>                 CUSTOMER_ID
>                 0
>               
>
> If you are scoping the stream to the customer then you must supply a
> valid customer ID.
>
> Best,
> - Eric Koleda, AdWords API Team
>
> On Nov 9, 11:19 am, mariek  wrote:
>
> > I have a test which creates bulk job update with about 15 keywords
> > within 3 adgroups
> > I receive error IdError.NOT_FOUND , but I'm sure that keywords that I
> > want to update are on the account. I see them through 'Sandbox Account
> > Viewer' tool.
> > I attach log below.
> > Any of You had similar problem ?
>
> > Wire dump:
>
> > = Request
>
> > ! CONNECT TO adwords-sandbox.google.com:443
>
> > ! CONNECTION ESTABLISHED
>
> > POST /api/adwords/job/v201008/BulkMutateJobService HTTP/1.1
> > SOAPAction: ""
> > Content-Type: text/xml; charset=utf-8
> > User-Agent: SOAP4R/1.5.8 (httpclient.rb/280, ruby 1.8.7 (2010-08-16)
> > [x86_64-linux])
> > Date: Tue, 09 Nov 2010 16:01:47 GMT
> > Content-Length: 11749
> > Host: adwords-sandbox.google.com
>
> > 
> > http://www.w3.org/2001/XMLSchema";
> >     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
> >     xmlns:env="http://schemas.xmlsoap.org/soap/envelope/";>
> >   
> >          >             xmlns:n1="https://adwords.google.com/api/adwords/cm/
> > v201008">
> >           x
> >           adwords4r: x
> >           xx
> >           client_3+x
> >         
> >   
> >   
> >     https://adwords.google.com/api/adwords/cm/
> > v201008">
> >       
> >         ADD
> >         
> >           
> >             0
> >             
> >               
> >                 CUSTOMER_ID
> >                 0
> >               
> >               
> >                 SET
> >                 
> >                   3122526244
> >                   
> >                     14001348
> >                   
> >                   PAUSED
> >                 
> >               
> >             
> >             
> >               
> >                 CUSTOMER_ID
> >                 0
> >               
> >               
> >                 SET
> >                 
> >                   3122526244
> >                   
> >                     14001351
> >                   
> >                   PAUSED
> >                 
> >               
> >             
> >             
> >               
> >                 CUSTOMER_ID
> >                 0
> >               
> >               
> >                 SET
> >                 
> >                   3122526244
> >                   
> >                     14001350
> >                   
> >                   PAUSED
> >                 
> >               
> >             
> >             
> >               
> >                 CUSTOMER_ID
> >                 0
> >               
> >               
> >                 SET
> >                 
> >                   3122526244
> >                   
> >                     14001349
> >                   
> >                   PAUSED
> >                 
> >               
> >             
> >             
> >               
> >                 CUSTOMER_ID
> >                 0
> >               
> >               
> >                 SET
> >                 
> >                   3122526244
> >                   
> >                     14001347
> >                   
> >                   PAUSED
> >                 
> >               
> >             
> >             
> >               
> >                 CUSTOMER_ID
> >                 0
> >               
> >               
> >                 SET
> >                 
> >                   3122526243
> >                   
> >                     14001346
> >                   
> >                   PAUSED
> >                 
> >               
> >             
> >             
> >               
> >                 CUSTOMER_ID
> >                 0
> >               
> >               
> >                 SET
> >                 
> >                   3122526243
> >                   
> >                     14001345
> >                   
> >                   PAUSED
> >                 
> >               
> >             
> >             
> >               
> >                 CUSTOMER_ID
> >                 0
> >               
> >               
> >                 SET
> >                 
> >                   3122526243
> >                   
> >                     14001342
> >                   
> >                   PAUSED
> >                 
> >               
> >             
> >             
> >               
> >                 CUSTOMER_ID
> >                 0
> >               
> >               
> >                 SET
> >                 
> >                   312

returnMoneyInMicros: true but totalConvValue still in currency

2010-11-12 Thread DaveOz
Hi,
I've set returnMoneyInMicros: true in my http headers when requesting
report downloads (v201008 API) and modified my code to expect all
monetary values to be returned in micros from the
ReportDefinitionService.
Most fields like maxCPC & avgCPC are indeed now returned in micros.

However, I still get sent totalConvValue in currency units (pounds in
my case).

Is this working as designed? If so, is it documented somewhere which
monetary values will be switching to micros and which aren't?

Thanks,
David

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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


Remarketing and conversion scripts

2010-11-12 Thread Zweitze
Hi all,

About this blog posting:
http://adwordsapi.blogspot.com/2010/10/discover-v201008-remarketing.html

It appears to me that the audience created by the sample code will
always have a population of 0 - because no web page was altered.
Unless I'm mistaken, the code asks the Remarketing API to create a new
conversion type but does nothing with its result.

So I'm wondering, if you want to update the web page, what script
should be included? Can it be generated automatically?

Note:
Actually I don't want to update web pages. I want to check which pages
work with which audiences - so I want to make a link between a web
page and a conversion type. How can I detect a conversion type in a
page? Can I do something with its name or id?

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