Multiple Placement added in single Job

2010-07-08 Thread Ashok
Hi, I am working in google adwords api implementation. I hv some doubts.. It is possible to add multiple placement in single jobs like (array). Single set Placement is working but i m want at a time i want to set multiple placement in Single jobs... So give any solutions.

Simple Adwords script

2010-07-08 Thread Gareth_Hopkins
I have been searching the web, and racking my little brain to sort this problem out. I have a CMS which I package with websites I design, I have successfully integrated Analytics into it but now want to report on AdWords. All I need is a script which will pull off a site's Adwords results (keyword

Re: Match APi for CTR value.

2010-07-08 Thread gun.g2i
Thanks for your response. So, is there the certain calculation to get this value? Regards, On Jul 8, 2:20 am, AdWords API Advisor wrote: > Hi, > > A global CTR value is not available through the API. > > Best, > - Eric Koleda, AdWords API Team > > On Jul 6, 4:01 am, gun gun iskandar wrote: > >

Re: PHP - adding ad group and keywords

2010-07-08 Thread phpguy
Eric, Thanks a bunch. As far as grabbing the response and Ad Group id, what is the appropriate command for that? I've created the Ad Group already but just wasn't sure how to catch the ID on the response. You sure are helpful on this board...we appreciate it! On Jul 7, 3:22 pm, AdWords API Adv

API Campain names

2010-07-08 Thread axum
how do you loop through to get campaign names? I tried this code: I can get the ids but I want the name. AdWordsUser user = new AdWordsUser(); long retVal = -1; // Get the CampaignService. CampaignService campaignService = (CampaignService) user.GetService(AdWor

keyword status

2010-07-08 Thread axum
can you change the keyword status through the API? -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://adwordsapi.blogspot.com http://groups.google.com/group/adwords-api =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this messa

Changing the bid amout using api

2010-07-08 Thread axum
has anyone changed bids using the API? if so any c# examples of how to do this? -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://adwordsapi.blogspot.com http://groups.google.com/group/adwords-api =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=

Re: Error when attempting to download report in v201003

2010-07-08 Thread Don Spaulding
Eric, The library I depend on hadn't been updated on the machine I was testing from yet, but I don't think that was causing this problem. Here's a call that received an identical response on the v201003 API (for a different report entirely). REQUEST: https://adwords.google.com/api/adwords/ cm/v20

v201003 - Url Performance Report - INVALID_FIELD_NAME_FOR_REPORT

2010-07-08 Thread kevin t
I am trying to transition my code from v13 to v201003. In my v13 code I can choose from many selectedColumns options however in v201003 I cannot select the same columns and makes it difficult to create the report I want. The link below has the columns that should be available (200+): http://code

Re: Fatal error: Uncaught SoapFault exception

2010-07-08 Thread AdWords API Advisor
Hi, It looks like the SOAP XML isn't being generated correctly by the library. Please open a bug on the issue tracker for the client library: http://code.google.com/p/google-api-adwords-php/issues/list Best, - Eric Koleda, AdWords API Team On Jul 7, 8:51 am, Mark wrote: > Hi, > recently I s

Re: report field names

2010-07-08 Thread AdWords API Advisor
Hi Chris, In a way all fields are really context dependent. The field "Impressions" always refers to the number of impressions received, but this will mean impressions per keyword in a KEYWORDS_PERFORMANCE_REPORT, and impressions per ad in an AD_PERFORMANCE_REPORT. Best, - Eric On Jul 7, 2:57 p

Re: An item with the same key has already been added.??

2010-07-08 Thread AdWords API Advisor
Hi, By default the TargetingIdeaService will return results with any match type, so your results could include: john/BROAD john/PHRASE john/EXACT Using the keyword text as the key in your dictionary is not sufficient, since the same keyword text can be returned with different match types.

Re: Developer and application token

2010-07-08 Thread AdWords API Advisor
Hi, Your developer token is shown on the "My Account" -> "AdWords API Center" tab for the MCC account you used when you registered for API access. Best, - Eric Koleda, AdWords API Team On Jul 7, 3:48 pm, "train...@rangeonlinemedia.com" wrote: > I have some functions that are using v13.  I am ru

Re: Keyword statistics without active campaign

2010-07-08 Thread AdWords API Advisor
Hi David, Unfortunately there is no way to get statistics about the global average CTR or CPC values for keywords. The traffic estimator service can give you estimates about how that keyword would perform in your account, but that's not quite the same. Best, - Eric Koleda, AdWords API Team On J

Re: SOAP-ERROR: Parsing WSDL

2010-07-08 Thread AdWords API Advisor
Hi, Can you try downloading the WSDL manually on that machine? It could be that firewall or other network settings are preventing access to the WSDL. Best, - Eric On Jul 7, 5:22 pm, zac439 wrote: > Hi Eric, > > I get this error: > Fatal error: Uncaught SoapFault exception: [WSDL] SOAP-ERROR: P

Re: Bulk job best practices

2010-07-08 Thread AdWords API Advisor
Hi, MCC accounts cannot have BulkMutateJobs of their own. Using MCC credentials and a clientEmail or clientCustomerId header is identical to using the client's credentials directly, and in both cases the job will be created added to the client's queue. Best, - Eric On Jul 7, 6:59 pm, khelll wr

Re: Error when attempting to download report in v201003

2010-07-08 Thread AdWords API Advisor
Hi Don, There is a separate issue where currently KeywordText needs KeywordMatchType to work correctly. Hi Luka, Do you have the SOAP XML you are using to create the report definition? Best, - Eric On Jul 8, 4:06 pm, Don Spaulding wrote: > Eric, > > The library I depend on hadn't been updated

Re: predicate examples

2010-07-08 Thread AdWords API Advisor
Hi Chris, There currently isn't the ability to OR together two different predicates. However, for using OR logic on different values of the same field you can take advantage of the values array and the IN operator. AdGroupId IN (12345, 67890) Is there a use case you have in mind where you wou

Re: predicate examples

2010-07-08 Thread chris h
ORing together STARTS_WITH or CONTAINS is a common use case. On Jul 8, 6:26 pm, AdWords API Advisor wrote: > Hi Chris, > > There currently isn't the ability to OR together two different > predicates.  However, for using OR logic on different values of the > same field you can take advantage of th

Re: report field names

2010-07-08 Thread chris h
Ok. But it is still the same measure. Are there any other identity or categorical fields besides "Id" which are context dependent? On Jul 8, 6:03 pm, AdWords API Advisor wrote: > Hi Chris, > > In a way all fields are really context dependent.  The field > "Impressions" always refers to the number

how to estimate maxCpc on new campaigns

2010-07-08 Thread penaz
Hi all. Please help. We will be using the Adwords API to help new Adwords clients and clients running campaigns on new keywords/ad groups. How do we get the estimated maxCpc to input into the TrafficEstimatorService in order to get the following results estimated for our clients: lowerClicksPerDa