Re: Report Fields in v201101, such as VideoPlaybacks

2011-10-27 Thread Eric Koleda
Hi,

The discussion around these fields is still ongoing, but at this time the 
data is not available in any other way.

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


Re: Setting up adowords API and stuck at PyXML

2011-10-27 Thread grayhuze
what exactly did you do to resolve this issue.  Typing "Thanks for 
replying. 

I managed to solve this error. I gave the proper path to PyXML and it 
worked. 

Regards, 
Yogesh "

Helps nobody

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Broad Match Modifier via the API?

2011-10-27 Thread jstedman
Gotcha, sorry for the confusion. I actually have no idea if this
feature is supported in the API.

The documentation does not specify if this is allowed, one of the
developer relations people from Google will hopefully have the answer
for us.

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Broad Match Modifier via the API?

2011-10-27 Thread veseo
I know, but as you see "Broad match modifier" does not exist as an option - 
my question was this - if I add a keyword, starting with a plus sign (i.e. 
+test1) with a matchType of "Broad", does this mean that the keyword is now 
using the Broad Match Modifier, explained in the following link - 
http://adwords.google.com/support/aw/bin/answer.py?hl=en&answer=175280

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Broad Match Modifier via the API?

2011-10-27 Thread jstedman
Match type can be manipulated using the .matchType field, see
attached link.

http://code.google.com/apis/adwords/docs/reference/latest/AdGroupCriterionService.Keyword.html#matchType

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: NON_MULTIPLE_OF_MINIMUM_CURRENCY_UNIT confusion

2011-10-27 Thread jstedman
The way I would handle it, assuming your working in PHP and currency
in dollars is:

// value of budget in dollars as stored in DB or as given by UI or
however you get it.
// if arithmetic is performed on this number as a float, your $10
might look like 9.999 from floating point errors.
$budgetValue=9.;

// add .001 since this value will have no effect unless the third
decimal place is a 9 indicating a floating point error.
// then multiply by 100 to get 1000., then cast that to an int
$budgetValueInt = (int)(($budgetValue+.001)*100);  //yields integer
1000

// use string concatenation to get to a whole number micros
representation of the budget
$budgetValueToSet = $budgetValueInt.""; // yields string value
1000 or $10 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: Strange behavior (maybe?) in v201101 TrafficEstimatorService

2011-10-27 Thread Ian Knox
So I just thought I'd follow up here  to see if there might be any new 
thinking regarding this issue.  I attempted to get some information about 
this in the AdWords forum but no-one seemed to have any idea why the 
Estimator behaves this way.

Eric (or whomever), is there another resource I can use to either get this 
fixed?  The problem is wasting resources both for my client and for Google 
as we have to send these keywords in batches of 5 at a time.

Ian

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


AccountTimeZoneId Notes: field in Report Types listing is inaccurate.

2011-10-27 Thread jstedman
The listed return type of this field is 'Integer' but the 'Notes:'
entry gives a string example and implies that it is the name of the
timezone and not the timezone identifier.

Notes: Name of the timezone. For example: "(GMT-05:00) Eastern Time"

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: AdWords API v201109 is now available

2011-10-27 Thread David Torres
Hi Daniel,

We are aware of the lack of timezone in the service and working on it. In 
the meantime a strange way to get it is by requesting an account 
performance report and include the "AccountTimeZoneId", we understand this 
might not be optimal or more intuitive way to get this value.

Best,

-David Torres - 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: CustomerSyncService: returning Ad IDs for Ads that cannot be retrieved

2011-10-27 Thread timp
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


Adding an ad with AddAds.php

2011-10-27 Thread Bogdan
I downloaded the adwords api php SDK (v201101) for the purpose of
using AdParamService. Until I get to that step I have to populate the
sandbox account with Campaign, Adgroups, Ads and Keywords. I'm right
now stuck on adding ads.
When I run /AddAds.php I get the following error:
[AdError.MISSING_REQUIRED_TEMPLATE_FIELDS @
operations[2].operand.ad.templateElements[0].fields; trigger:'video']
I think it's because of this line:
$videoMediaId = (float) 'INSERT_VIDEO_MEDIA_ID_HERE';
What should I enter in as VIDEO_MEDIA_ID?

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


Dot Net - Ad Copy puase

2011-10-27 Thread Khan Tanveer
Hi Guys,

I am using below code to pause ad copy, but it is not working for me,
it throws exception "An API exception has occurred. See ApiException
and InnerException fields for more details."

Is there anybody who can help.

AdGroupAdService service =
(AdGroupAdService)user.GetService(AdWordsService.v200909.AdGroupAdService);

long adGroupId = long.Parse(adgId);
long adId = long.Parse(strAdId);

AdGroupAd adGroupAd = new AdGroupAd();

adGroupAd.status = AdGroupAdStatus.PAUSED;
adGroupAd.adGroupIdSpecified = true;
adGroupAd.adGroupId = adGroupId;
adGroupAd.ad = new TextAd();
adGroupAd.ad.approvalStatusSpecified = false;
adGroupAd.ad.id = adId;

AdGroupAdOperation adGroupAdOperation = new
AdGroupAdOperation();
adGroupAdOperation.operatorSpecified = true;
adGroupAdOperation.@operator = Operator.REMOVE;
adGroupAdOperation.operand = adGroupAd;
try
{
AdGroupAdReturnValue retVal = null;
retVal = service.mutate(new AdGroupAdOperation[]
{ adGroupAdOperation });
if (retVal.value != null && retVal.value.Length > 0)
{
AdGroupAd tempAdGroupAd = retVal.value[0];
MessageBox.Show(tempAdGroupAd.ad.id
+""+tempAdGroupAd.status);
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Adhoc Reporting Response Codes

2011-10-27 Thread Danial Klimkin
Hello,


The error could be determined by HTTP code (400 or 500 for error) and 
response body which is in format:

!!!||???

for example:

!!!2|||-1|||Improperly formatted report request???


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


NON_MULTIPLE_OF_MINIMUM_CURRENCY_UNIT confusion

2011-10-27 Thread sourabh
Sometimes i get below mentioned error(s) when pushing campaign budget
data to google adwords using my application:

[Oct 27 2011 03:00:07.00 - ERROR] email=xxx...@gmail.com
effectiveUser=xx service=CampaignService method=mutate
operators={SET: 1} responseTime=259
requestId=0004b043ffbe0be80a4255697c83 operations=0 units=0
server=adwords.google.com isFault=true
faultMessage=[BudgetError.NON_MULTIPLE_OF_MINIMUM_CURRENCY_UNIT @
operations[0].operand.budget]

[Oct 27 2011 03:30:06.00 - ERROR] email=xxx...@gmail.com
effectiveUser=xx service=CampaignService method=mutate
operators={SET: 1} responseTime=387
requestId=0004b0446b048a580a4227af38df operations=0 units=0
server=adwords.google.com isFault=true
faultMessage=[BudgetError.NON_MULTIPLE_OF_MINIMUM_CURRENCY_UNIT @
operations[0].operand.budget]

I know it's related to type casting of final budget value to float as
discussed here 
http://groups.google.com/group/adwords-api/browse_thread/thread/f8e1a08b10d20079
but i am not sure when should i type cast budget value to float.
BEFORE multiplying it with 100 or AFTER multiplying it?

TIA

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Non-MCC related account and the use of the ServicedAccountService

2011-10-27 Thread Danial Klimkin
Hello Stephen,


Thanks for reporting, I will look into this.


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