AdWords API Re: Please clarify on getClientAccounts()

2008-10-02 Thread dasarad...@yahoo.com

Hi Christian,

Thanks for reply.

#2, do you mean  or  address? because
AdWordsUser.java, says  for adword user and  for
MCC account?

Please clarify.

Thanks,

On Oct 2, 12:03 am, ckrahn <[EMAIL PROTECTED]> wrote:
> 1. getClientAccounts:
> Gets the primary email address (not ID) for each account managed by
> the effective user. If the effective user user has no client accounts,
> an empty array is returned.
>
> 2. use getClientAccounts with the email adress of the MCC account,
> that should give you all the accounts within the MCC account.
>
> Regards,
> Christian
>
> On 1 Okt., 23:02, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote:
>
>
>
> > Could someone please clarify.
>
> > 1. Does AccountSerive.getClientAccounts() give all Adword account
> > email ids which belong to clientemail?
>
> > 2. How do I get all adword account for given mcc account?
>
> > Thanks,- Hide quoted text -
>
> - Show quoted text -
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/adwords-api?hl=en
-~--~~~~--~~--~--~---



AdWords API Re: Are email and password MCC account info?

2008-10-02 Thread dasarad...@yahoo.com

Java Programming. AWAPI_JAVA_LIB_2.1.0

Thanks,


On Oct 2, 2:04 am, "Jan Piotrowski (AdWords API Guru)"
<[EMAIL PROTECTED]> wrote:
> Sorry, still don't get it.
>
> What programming language, API library or example code are you using?
>
> - Jan
>
> On 1 Okt., 20:54, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote:
>
>
>
> > Basically, my question is from Adwords.properties which is under API.
>
> > We're trying to get all the client accounts for given Master account
> > or Company account.
> > When creating credentials, email and password should be  MCC account
> > info?
>
> > Thanks
>
> > On Oct 1, 11:47 am, "Jan Piotrowski (AdWords API Guru)"
>
> > <[EMAIL PROTECTED]> wrote:
> > > Where is this information from?
> > > What script or example are you using?
>
> > > - Jan- Hide quoted text -
>
> - Show quoted text -
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/adwords-api?hl=en
-~--~~~~--~~--~--~---



AdWords API Where my Campaign get created?

2008-10-02 Thread [EMAIL PROTECTED]

Hi,

We're having multiple client accounts from our business with Google.

We're going to migrate user interface to API creation.

If I have 10 client accounts, under which client account my campaign
get created when call API?

Please clarify this.

Thanks,
Das


--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/adwords-api?hl=en
-~--~~~~--~~--~--~---



AdWords API Re: Please clarify on getClientAccounts()

2008-10-02 Thread AdWords API Advisor

Hello,

 The rest of the text in the docs should hopefully clear that up:

  
http://code.google.com/apis/adwords/docs/developer/AccountService.html#getClientAccounts

There's a description of what constitutes the effective user and how
the clientEmail and email headers come into play. Basically, to get a
list of all the accounts under an MCC, you'd call getClientAccounts()
and pass in the MCC's email address as the email header and leave out
the clientEmail header.

Cheers,
-Jeff Posnick, AdWords API Team


On Oct 2, 1:11 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
wrote:
> Hi Christian,
>
> Thanks for reply.
>
> #2, do you mean  or  address? because
> AdWordsUser.java, says  for adword user and  for
> MCC account?
>
> Please clarify.
>
> Thanks,
>
> On Oct 2, 12:03 am, ckrahn <[EMAIL PROTECTED]> wrote:
>
> > 1. getClientAccounts:
> > Gets the primary email address (not ID) for each account managed by
> > the effective user. If the effective user user has no client accounts,
> > an empty array is returned.
>
> > 2. use getClientAccounts with the email adress of the MCC account,
> > that should give you all the accounts within the MCC account.
>
> > Regards,
> > Christian
>
> > On 1 Okt., 23:02, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote:
>
> > > Could someone please clarify.
>
> > > 1. Does AccountSerive.getClientAccounts() give all Adword account
> > > email ids which belong to clientemail?
>
> > > 2. How do I get all adword account for given mcc account?
>
> > > Thanks,- Hide quoted text -
>
> > - Show quoted text -
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/adwords-api?hl=en
-~--~~~~--~~--~--~---



AdWords API Re: Are email and password MCC account info?

2008-10-02 Thread AdWords API Advisor

Based on your other questions posted in this group, I'm assuming that
you're asking about how to populate the credentials when making a call
to getClientAccounts(). As I mentioned in a separate thread, in that
situation you'd want to specify your MCC's email address and password
for the "email" and "password" header, and you'd want to leave the
"clientEmail" header blank. This will result in the request being made
in the effective context of the MCC account, which is what you want.

There are likely to be some other API calls that you want to specify
the clientEmail header for, though. Rather than manually editing the ~/
adwords.properties file each time you need to switch between contexts
you might want to look into using one of the other constructors for
the AdWordsUser() Java object--specifically, use a constructor that
lets you specify all the header values as a Hashtable, rather than
reading them in from the ~/adwords.properties file. This should give
you more flexibility when switching between different clientEmail
values or when you need to leave out clientEmail entirely.

Cheers,
-Jeff Posnick, AdWords API Team


On Oct 2, 1:14 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
wrote:
> Java Programming. AWAPI_JAVA_LIB_2.1.0
>
> Thanks,
>
> On Oct 2, 2:04 am, "Jan Piotrowski (AdWords API Guru)"
>
> <[EMAIL PROTECTED]> wrote:
> > Sorry, still don't get it.
>
> > What programming language, API library or example code are you using?
>
> > - Jan
>
> > On 1 Okt., 20:54, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote:
>
> > > Basically, my question is from Adwords.properties which is under API.
>
> > > We're trying to get all the client accounts for given Master account
> > > or Company account.
> > > When creating credentials, email and password should be  MCC account
> > > info?
>
> > > Thanks
>
> > > On Oct 1, 11:47 am, "Jan Piotrowski (AdWords API Guru)"
>
> > > <[EMAIL PROTECTED]> wrote:
> > > > Where is this information from?
> > > > What script or example are you using?
>
> > > > - Jan- Hide quoted text -
>
> > - Show quoted text -
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/adwords-api?hl=en
-~--~~~~--~~--~--~---



AdWords API Re: Average upper and lower positions

2008-10-02 Thread AdWords API Advisor

Please see the discussion in the other thread:

  
http://groups.google.com/group/adwords-api/browse_thread/thread/56352f26c80d9e62/b0334472a9497b0a#b0334472a9497b0a

Cheers,
-Jeff Posnick, AdWords API Team


On Oct 2, 12:03 pm, Theonlineseo <[EMAIL PROTECTED]> wrote:
> Could someone please clarify what these terms are, how they are
> calculated, and how accurate are they?
>
> keyword Date    lowerAvePosition        upperAvgPosition        
> lowerClicksPerDay
> upperClicksPerDay
> kewyord                     1
> 3                              0.383594                       0.7900643
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/adwords-api?hl=en
-~--~~~~--~~--~--~---



AdWords API Re: lower/upper Avg Position

2008-10-02 Thread AdWords API Advisor

Assuming that you're referring to the values returned in the
KeywordEstimate object:

  http://code.google.com/apis/adwords/docs/developer/KeywordEstimate.html

These values are only relevant for text ads shown in the Search
Network. If you bid the value listed in lowerCpc, then, on average, if
the given keyword triggers your ad, it will appear in position
lowerAvgPosition. If you bid upperCpc, your ad will appear on average
at position upperAvgPosition.

 To throw out some random numbers for the purpose of illustration, the
results might indicate that bidding $0.25USD for a keyword will result
in ads that display fourth from the top, and that bidding $0.50USD for
a keyword will result in ads that appear at the very top of the list.

 The numbers are all estimates, and I don't know the answer to how
accurate they are in any statistically significant way.

Cheers,
-Jeff Posnick, AdWords API Team


On Oct 2, 11:29 am, Theonlineseo <[EMAIL PROTECTED]> wrote:
> They are outputted in the api to calculate position results.
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/adwords-api?hl=en
-~--~~~~--~~--~--~---



AdWords API Re: DefinedReportJob returns blank report

2008-10-02 Thread AdWords API Advisor

Hello,

 It sounds like you might be running the Keyword Structure report
against your MCC account, which doesn't contain any actual AdWords
data. You'd want to be sure that you run the report against an actual
AdWords account. Take a look at the credentials you're specifying in
your ~/adwords.properties file and make sure that you're filling
providing an AdWords login for clientEmail.

 If you're sure that you're running the report under the context of
the AdWords account and you're still getting an empty report, let us
know.

Cheers,
-Jeff Posnick, AdWords API Team


On Oct 1, 6:53 pm, buddi <[EMAIL PROTECTED]> wrote:
> Can anyone please help me on this issue?
>
> On Sep 30, 11:12 am, buddi <[EMAIL PROTECTED]> wrote:
>
> > I am using "ReportServiceStructureDemo" example to generate a report
> > and here is my code
>
> > import com.google.api.adwords.lib.AdWordsUser;
> > import com.google.api.adwords.lib.ReportDate;
> > import com.google.api.adwords.v12.DefinedReportJob;
> > import com.google.api.adwords.v12.ReportInterface;
> > import com.google.api.adwords.v12.ReportJobStatus;
>
> > /**
> >  * This demo schedule structure keyword report and retrieves its
> > download URL.
> >  */
> > public class ReportServiceStructureDemo {
> >   public static void main(String args[]) throws Exception {
> >     // Log SOAP XML request and response.
> >     //AdWordsServiceLogger.log();
>
> >     // Get credentials and service
> >     AdWordsUser user = new AdWordsUser();
> >     ReportInterface service =
> >         (ReportInterface) user.getService(user.REPORT_SERVICE);
>
> >     // Create report job.
> >     DefinedReportJob job = new DefinedReportJob();
> >     /*
> >     job.setSelectedReportType("Structure");
> >     job.setAggregationTypes(new String[] {"Keyword"});
> >     job.setStartDay(new ReportDate(2008, 0, 1).toDate());
> >     job.setEndDay(new ReportDate(2008, 0, 31).toDate());
> >     job.setName("Demo Structure Keyword Report");
> >     job.setSelectedColumns(new String[] {
> >         "Campaign", "CampaignId", "AdGroup", "AdGroupId", "Keyword",
> >         "KeywordId", "MaximumCPC"});
> >     */
>
> >     job.setSelectedReportType("Creative");
> >     job.setAggregationTypes(new String[] {"Daily"});
> >     job.setStartDay(new ReportDate(2008, 7, 01).toDate());
> >     job.setEndDay(new ReportDate(2008, 7, 31).toDate());
> >     job.setSelectedColumns(new String[] {
> >                 "CreativeId", "MaximumCPC", "CPC", "AveragePosition"});
>
> >     // Validate report job.
> >     service.validateReportJob(job);
>
> >     // Schedule report job.
> >     long jobId = service.scheduleReportJob(job);
>
> >     // Wait for report to finish.
> >     ReportJobStatus status = service.getReportJobStatus(jobId);
> >     while (status != ReportJobStatus.Completed &&
> >            status != ReportJobStatus.Failed) {
> >       try {
> >         Thread.sleep(3);
> >       } catch (InterruptedException e) {}
>
> >       status = service.getReportJobStatus(jobId);
> >       System.out.println("Report job status is " + status.toString());
> >     }
>
> >     if (status == ReportJobStatus.Failed) {
> >       System.out.println("Job failed!");
> >     } else {
> >       System.out.println("The report is ready!");
>
> >       // Get report download url.
> >       String url = service.getGzipReportDownloadUrl(jobId);
> >       System.out.println("Report url is " + url);
> >     }
> >   }
>
> > }
>
> > The issue is, when I run this example I get a blank report. When I log
> > into my AdWords account, I could see this newly generated report under
> > Client Reports -> Report Center. The status says completed but when I
> > click on this report, it returns a blank report (as expected). I then
> > created a new report using Create Similar link next to the report
> > generated using AdWords API (above) and dint change anything on
> > "Create Report" page and simply clicked on Create Report button at the
> > bottom. I looked at the newly created report and it is not blank which
> > implies that the report I generated using AdWords API was missing
> > something.
>
> > Can anyone please tell me what is the issue? The above code is under
> > examples of "AdWords API Java Client Library" distribution (http://
> > code.google.com/p/google-api-adwords-java/).
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/adwords-api?hl=en
-~--~~~~--~~--~--~---



AdWords API is Account equals to MCC account?

2008-10-02 Thread [EMAIL PROTECTED]

Hi,

Can somebody help on this?

1. Is AccountInfo.java equals to MCC account?
2. Why there is no API to create Account?

Thanks,
Das
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/adwords-api?hl=en
-~--~~~~--~~--~--~---



AdWords API Re: File not found exception on download

2008-10-02 Thread tozor

I saw it several times on Friday during the day, but have not seen it
since then.

Tim Ozor

On Oct 2, 10:07 am, AdWords API Advisor <[EMAIL PROTECTED]>
wrote:
> Hello,
>
>  The bug is in with the engineering team, but there's no update on it
> yet. How frequently are folks experiencing this behavior over the past
> day or so? If this was taking place primarily last week that's a good
> data point to pass back to the engineers.
>
> Cheers,
> -Jeff Posnick, AdWords API Team
>
> On Sep 29, 4:35 am, Albert <[EMAIL PROTECTED]> wrote:
>
> > Please let us know when this is resolved. In the mean time we've
> > implemented a re-try ordering a new report if the download url throws
> > 404 not found. The problem with this is we are paying quota for each
> > new report although the problem is not on our side.
>
> > regards,
> > Albert
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/adwords-api?hl=en
-~--~~~~--~~--~--~---



AdWords API Re: accessing data from adwords accounts with MMC manager status

2008-10-02 Thread Peer Jakobsen (AdWords API Guru)

You can either link the other MCC to you MCC as "API link only", or
link the individual accounts of the other MCC into your MCC also as
"API link only".

An account/MCC can only be linked twice, so if his accounts are only
linked to his MCC then their should still be room for you to do an
"API link only" to your MCC.

Hope that makes sense :-)

--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/adwords-api?hl=en
-~--~~~~--~~--~--~---



AdWords API Re: keyword variations - negative keywords returned in output for this request

2008-10-02 Thread borcho

Jeff,

Thanks for your response. I retested the query using the out of the
box Apility library - same result. Let me know if you hear anything
from the engineers or need additional info.

Best regards,

Boris

On Oct 2, 11:46 am, AdWords API Advisor <[EMAIL PROTECTED]>
wrote:
> Hello Boris,
>
>  That doesn't look like the correct behavior to me. I'll open a bug
> about it and let you know what I hear back.
>
>  As an aside, you don't need to include the same language and country
> value multiple times. You can just list "en" and "US" once. That
> shouldn't be causing the behavior you're seeing, though.
>
> Cheers,
> -Jeff Posnick, AdWords API Team
>
> On Oct 1, 12:08 am, borcho <[EMAIL PROTECTED]> wrote:
>
> > Hi,
>
> > I am using KeywordVariations to request similar keywords and I get
> > some of the negative keywords in the result. For example, I submit the
> > request below and I get keywords such as "leather purses", "discount
> > leather purses". What am I doing wrong? Any help will be greatly
> > appreciated.
>
> > false > negative>pursesBroad > seedKeywords>trueleather
> > pursesBroad > seedKeywords>truesmall > text>Broadtrue > negative>coolBroad > seedKeywords>truepatterns > text>Broadtrue > negative>discountBroad > seedKeywords>trueen > languages>enen > languages>enen > languages>enUS > countries>USUS > countries>USUS > countries>US
>
> > Boris
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/adwords-api?hl=en
-~--~~~~--~~--~--~---



AdWords API accessing data from adwords accounts with MMC manager status

2008-10-02 Thread David

Hi guys,
Perhaps someone will know this. Currently I'm building an api app
which looks at the stats of adwords accounts for feedback etc. All
these adwords accounts are under the control of the MMC account which
my dev and app tokens are associated with. So no problems there, but
in my app there is potential that an adwords account which we will
want to run this app for will already have a MMC account associated
with it. We do not want the end ppc account owner to have to kick his
or her existing MMC to allow us to access the data, we also do not
want the other MMC to know anything about the process if possible.

Does this put me in a pickle? What approaches can I take on this one.
Is it possible for an end user ppc person to just give my MMC
associated email account access but not MMC access as such? And then
would we be able to get API data as if we where MMC?

Anyone with me? Basically need to be able to get the data via API and
GUI is possible but with transparency so if anyone is managing the
account already they do not need to know any different.

--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/adwords-api?hl=en
-~--~~~~--~~--~--~---



AdWords API Re: Local Database Sync project

2008-10-02 Thread AdWords API Advisor

Hello Robb,

 I'd give the appropriate installer for your system architecture a try
from

  http://python.org/download/

I developed the code against Python 2.5.x. Python 2.6 was just
released yesterday and I haven't given it a go with that yet. Python
2.4.x should also work, but the SQLite Python module isn't bundled
with 2.4.x.

 The headers and shared objects for SQLite need to be installed on
your system, and in addition to that you need the SOAPpy Python
library installed to access the AdWords API. There are links to the
homepages of both of those products in the README.

 If you uncover any incompatibilities or bugs the best place to report
them is the project's issue track at

  http://code.google.com/p/awapi-local-db-sync/issues/list

Cheers,
-Jeff Posnick, AdWords API Team


On Sep 30, 1:22 pm, Robb <[EMAIL PROTECTED]> wrote:
> Jeffrey,
>
> Looks very nice since I am working on our SEM Campaign Manager which
> needs this type of functionality.
>
> What do you suggest for setting up an environment on Windows to
> support your project?
> Which Python runtime do I need?
> What other libraries do I need to install besides SQLite?
>
> Robb
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/adwords-api?hl=en
-~--~~~~--~~--~--~---



AdWords API Average upper and lower positions

2008-10-02 Thread Theonlineseo

Could someone please clarify what these terms are, how they are
calculated, and how accurate are they?

keyword DatelowerAvePositionupperAvgPosition
lowerClicksPerDay
upperClicksPerDay
kewyord 1
3  0.383594   0.7900643

--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/adwords-api?hl=en
-~--~~~~--~~--~--~---



AdWords API Re: keyword variations - negative keywords returned in output for this request

2008-10-02 Thread AdWords API Advisor

Hello Boris,

 That doesn't look like the correct behavior to me. I'll open a bug
about it and let you know what I hear back.

 As an aside, you don't need to include the same language and country
value multiple times. You can just list "en" and "US" once. That
shouldn't be causing the behavior you're seeing, though.

Cheers,
-Jeff Posnick, AdWords API Team


On Oct 1, 12:08 am, borcho <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I am using KeywordVariations to request similar keywords and I get
> some of the negative keywords in the result. For example, I submit the
> request below and I get keywords such as "leather purses", "discount
> leather purses". What am I doing wrong? Any help will be greatly
> appreciated.
>
> false negative>pursesBroad seedKeywords>trueleather
> pursesBroad seedKeywords>truesmall text>Broadtrue negative>coolBroad seedKeywords>truepatterns text>Broadtrue negative>discountBroad seedKeywords>trueen languages>enen languages>enen languages>enUS countries>USUS countries>USUS countries>US
>
> Boris
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/adwords-api?hl=en
-~--~~~~--~~--~--~---



AdWords API Re: API budget

2008-10-02 Thread AdWords API Advisor

Hello,

 If you reach your maximum spend as defined by your monthly AdWords
API budget, that will get reset at the start of each new month.
Perhaps that's what you're referring to?

 In any case, the easiest way to determine how many AdWords API units
you've used up in a given month and to adjust your monthly budget is
to log in to http://adwords.google.com/ with your MCC account, go to
the "My Account" tab, and then the "AdWords API Center" sub-tab. The
unit count isn't update in real time, but it should give you a good
idea as to how much has been used.

Cheers,
-Jeff Posnick, AdWords API Team


On Sep 30, 5:56 am, kokodrilo <[EMAIL PROTECTED]> wrote:
> Hi.
>
> I have a doubt.
>
> I have exhausted the budget of my API user but sometimes I can make
> requests to API and receive correct data, could someone explain it?
>
> Regards.
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/adwords-api?hl=en
-~--~~~~--~~--~--~---



AdWords API Re: lower/upper Avg Position

2008-10-02 Thread Theonlineseo

They are outputted in the api to calculate position results.
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/adwords-api?hl=en
-~--~~~~--~~--~--~---




AdWords API Re: getKeywordVariations countries

2008-10-02 Thread AdWords API Advisor

Hello Eric,

 The maximum number of variations you'll get back from the
getKeywordVariations() call is 200. If there are at least 200
"additionalToConsider" keywords, then you'll get all of those returned
to you and no "moreSpecific" ones, as the "additionalToConsider" are
considered more relevant and therefore preference is given to them in
the return values. If there are fewer than 200 "additionalToConsider"
variations, then you'll receive some "moreSpecific" variations as
well. Think of it as

  count(additionalToConsider) + count(moreSpecific) <= 200

with preference given to "additionalToConsider".

Cheers,
-Jeff Posnick, AdWords API Team


On Sep 29, 3:57 pm, esnagel <[EMAIL PROTECTED]> wrote:
> When I call getKeywordVariations as follows:
>
> false negative>hewlett packardBroad seedKeywords>falseen languages>USGB getKeywordVariations>
>
> I only get back "additionalToConsider" keywords.  I do not get any
> that are "moreSpecific".  To get the "moreSpecific" ones, I have the
> request:
>
> false negative>hewlett packardBroad seedKeywords>falseen languages>US
>
> (That's just US, not GB).  I'd like to not limit the country, (leaving
> out  alltogether) but I'm only getting back
> additionalToConsider and no moreSpecific keywords.
>
> Is there a way I can get moreSpecific keywords & leave countries empty
> for this keyword?  Why does the service prefer to return
> additionalToConsider over moreSpecific keywords?  Can I control that?
>
> Thanks,
> Eric
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/adwords-api?hl=en
-~--~~~~--~~--~--~---



AdWords API Re: File not found exception on download

2008-10-02 Thread AdWords API Advisor

Hello,

 The bug is in with the engineering team, but there's no update on it
yet. How frequently are folks experiencing this behavior over the past
day or so? If this was taking place primarily last week that's a good
data point to pass back to the engineers.

Cheers,
-Jeff Posnick, AdWords API Team


On Sep 29, 4:35 am, Albert <[EMAIL PROTECTED]> wrote:
> Please let us know when this is resolved. In the mean time we've
> implemented a re-try ordering a new report if the download url throws
> 404 not found. The problem with this is we are paying quota for each
> new report although the problem is not on our side.
>
> regards,
> Albert
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/adwords-api?hl=en
-~--~~~~--~~--~--~---



AdWords API Re: How do I get all the Account for given customerId?

2008-10-02 Thread Christian Krahn

That way you can get all the accounts in that MCC. That doesnt mean
that those accounts belong to one customer (unless you have one MCC
for each of your customers to handle each customer's accounts). So you
still would need some sort of identifier for each customer inside the
MCC.

One possible way would be if you use the account descriptiveName as
field for your own customer id. But then you would have to load each
account and check the value of the descriptiveName field to find out
if its the one.

Regards,
Christian

On 2 Okt., 16:13, Eric <[EMAIL PROTECTED]> wrote:
> What about if you give MCC credentials (i.e. add all the appropriate
> headers except client email)?
>
> On Oct 1, 8:25 am, ckrahn <[EMAIL PROTECTED]> wrote:
>
> > Since Google has its own customer id linked to each account, it has
> > nothing to do with your own customer id's in your own system.
> > Unless you have a local table where you link each of your own customer
> > id's to the google id's or loginEmails, the only way would be to read
> > the primary adress data from each account and compare it with your
> > local data - if there is a match you got the accounts. But that method
> > would probably eat up some quota if you have many accounts to manage.
>
> > Regards,
> > Christian
>
> > On 1 Okt., 03:37, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote:
>
> > > Hi,
>
> > > In our system, one customer maps to many Accounts in Google.
>
> > > We want to get all the Accounts for given customerId. How would I get?
> > > AccountInfo info = service.getAccountInfo(), gives one Account.
>
> > > Please help.
>
> > > Thanks,
> > > Das- Hide quoted text -
>
> > - Show quoted text -
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/adwords-api?hl=en
-~--~~~~--~~--~--~---



AdWords API Re: How do I get all the Account for given customerId?

2008-10-02 Thread Eric

What about if you give MCC credentials (i.e. add all the appropriate
headers except client email)?

On Oct 1, 8:25 am, ckrahn <[EMAIL PROTECTED]> wrote:
> Since Google has its own customer id linked to each account, it has
> nothing to do with your own customer id's in your own system.
> Unless you have a local table where you link each of your own customer
> id's to the google id's or loginEmails, the only way would be to read
> the primary adress data from each account and compare it with your
> local data - if there is a match you got the accounts. But that method
> would probably eat up some quota if you have many accounts to manage.
>
> Regards,
> Christian
>
> On 1 Okt., 03:37, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote:
>
>
>
> > Hi,
>
> > In our system, one customer maps to many Accounts in Google.
>
> > We want to get all the Accounts for given customerId. How would I get?
> > AccountInfo info = service.getAccountInfo(), gives one Account.
>
> > Please help.
>
> > Thanks,
> > Das- Hide quoted text -
>
> - Show quoted text -
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/adwords-api?hl=en
-~--~~~~--~~--~--~---



AdWords API Re: Can I get conversion value totals per campaign?

2008-10-02 Thread ckrahn

I suggest running a campaign summary report on your MCC with the
column "TotalConversionValue" added to the request.

http://www.google.com/apis/adwords/developer/adwords_api_report_campaign.html#aggr_CampaignSummary

Should also be more quote efficient if you have lot of campaigns.

Regards,
Christian

On 2 Okt., 15:42, dooper3 <[EMAIL PROTECTED]> wrote:
> Hi all,
>
> I've been looking through the documentation for the adwords api and
> have succeeded in getting my impletementation to retrieve all the
> campaigns, and then retrieve the stats for each campaign through
> getCampaignStats before doing some maths and showing it to the person
> using it.
>
> However, I cannot see a way of retrieving the total values of
> conversions for each campaign?? I'm sure there must be a way of doing
> this, and that I've done it a funny way or something, but the
> documentation for StatsRecord makes no reference to conversion values/
> totals, just number of conversions or conversion rates.
>
> Anyone know how I can achieve this?
>
> Thanks,
> Charlie
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/adwords-api?hl=en
-~--~~~~--~~--~--~---



AdWords API Can I get conversion value totals per campaign?

2008-10-02 Thread dooper3

Hi all,

I've been looking through the documentation for the adwords api and
have succeeded in getting my impletementation to retrieve all the
campaigns, and then retrieve the stats for each campaign through
getCampaignStats before doing some maths and showing it to the person
using it.

However, I cannot see a way of retrieving the total values of
conversions for each campaign?? I'm sure there must be a way of doing
this, and that I've done it a funny way or something, but the
documentation for StatsRecord makes no reference to conversion values/
totals, just number of conversions or conversion rates.

Anyone know how I can achieve this?

Thanks,
Charlie
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/adwords-api?hl=en
-~--~~~~--~~--~--~---



AdWords API Re: Are email and password MCC account info?

2008-10-02 Thread Jan Piotrowski (AdWords API Guru)

Sorry, still don't get it.

What programming language, API library or example code are you using?

- Jan



On 1 Okt., 20:54, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote:
> Basically, my question is from Adwords.properties which is under API.
>
> We're trying to get all the client accounts for given Master account
> or Company account.
> When creating credentials, email and password should be  MCC account
> info?
>
> Thanks
>
> On Oct 1, 11:47 am, "Jan Piotrowski (AdWords API Guru)"
>
> <[EMAIL PROTECTED]> wrote:
> > Where is this information from?
> > What script or example are you using?
>
> > - Jan
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/adwords-api?hl=en
-~--~~~~--~~--~--~---



AdWords API Re: awapi-local-db-sync-1.0.0

2008-10-02 Thread ckrahn

The fix for that is:

remove

MaximumCPM

from the keyword history report job in the production.config file:

[KeywordHistory]
report_job: StructureLocal DB Sync: KeywordKeywordKeywordAdGroupIdBottomPositionCampaignIdKeywordDestUrlDisplayKeywordIdKeywordIsNegativeKeywordStatusKeywordTypeDisplayMaxContentCPCMaximumCPCMaximumCPMTopPosition


Regards,

Christian
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/adwords-api?hl=en
-~--~~~~--~~--~--~---



AdWords API Re: awapi-local-db-sync-1.0.0

2008-10-02 Thread ckrahn

Found the problem, the keyword report tried to get MaximumCPM on a CPC
campaign, related to this thread:
http://groups.google.com/group/adwords-api/browse_thread/thread/db6dbf408597789/d4bf495934b62ec6

On 1 Okt., 17:22, ckrahn <[EMAIL PROTECTED]> wrote:
> I tried the new AdWords API Local Database Sync tool and i got an
> error while running the reports the first time:
>
> 2008-10-01 17:02:26,997 [-KeywordHistory] ERROR:
> Traceback (most recent call last):
>   File "/opt/awapi-local-db-sync-1.0.0/bin/report_thread.py", line
> 208, in run
>     self.ValidateReportJob()
>   File "/opt/awapi-local-db-sync-1.0.0/bin/report_thread.py", line 96,
> in ValidateReportJob
>     self.report_service.validateReportJob(self.report_job)
>   File "/var/lib/python-support/python2.5/SOAPpy/Client.py", line 470,
> in __call__
>     return self.__r_call(*args, **kw)
>   File "/var/lib/python-support/python2.5/SOAPpy/Client.py", line 492,
> in __r_call
>     self.__hd, self.__ma)
>   File "/var/lib/python-support/python2.5/SOAPpy/Client.py", line 406,
> in __call
>     raise p
> faultType:  parameters is invalid.: :
> {'fault': : {'trigger': '
> The following columns are not supported by the Report Type Structure :
> [MaximumCPM]', 'message': 'One or more report job parameters is
> invalid.', 'code': '30'}}>
>
> The rest of the script ran smoothly. After analyzing the sqlite
> database afterwards 3 of the 4 tables were populated with data, all
> but the KeywordHistory.
>
> Next thing i checked was the report center on the AdWords page. There
> should have been 4 reports but only 3 were in there, the keyword
> report was missing (guess i found out why there was no data in my
> KeywordHistory table ^^).
>
> Regards,
> Christian
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/adwords-api?hl=en
-~--~~~~--~~--~--~---



AdWords API Re: Please clarify on getClientAccounts()

2008-10-02 Thread ckrahn

1. getClientAccounts:
Gets the primary email address (not ID) for each account managed by
the effective user. If the effective user user has no client accounts,
an empty array is returned.

2. use getClientAccounts with the email adress of the MCC account,
that should give you all the accounts within the MCC account.

Regards,
Christian


On 1 Okt., 23:02, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote:
> Could someone please clarify.
>
> 1. Does AccountSerive.getClientAccounts() give all Adword account
> email ids which belong to clientemail?
>
> 2. How do I get all adword account for given mcc account?
>
> Thanks,
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/adwords-api?hl=en
-~--~~~~--~~--~--~---