How can I modify the bid for and AdGroup keyword?

2013-12-16 Thread jaison . directi
Hi, Can someone give me a few pointers on how I can go about modifying a specific keyword bid for a particular AdGroup. Thanks -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://googleadsdeveloper.blogspot.com http://groups.google.com/

Re: How can I modify the bid for and AdGroup keyword?

2013-12-18 Thread jaison . directi
Hi, Below is my implementation using the PHP client library. $user = new AdWordsUser(); $user->SetClientCustomerId($_SESSION['adwordClientId']); $adGroupId = 'INSERT_ADGROUP_ID'; $keywordCriterionId = 'INSERT_CRITERION_ID'; $adGroupCriterionService = $user->GetService('AdG

Re: How can I modify the bid for and AdGroup keyword?

2013-12-20 Thread jaison . directi
I finally got it right. This is how a keyword criterion bid can be set using PHP client library. $user = new AdWordsUser(); $user->SetClientCustomerId($_SESSION['adwordClientId']); $adGroupId = 'INSERT_ADGROUP_ID'; $keywordCriterionId = 'INSERT_CRITERION_ID'; $adGroupCrite

How can I dynamically select the MCC account I want to work with

2014-03-03 Thread jaison . directi
Hi, I would like to work with multiple MCC accounts using my application. How can I dynamically use the settings for a selected MCC from within the same application. The application would have an interface where I could select the MCC account I want to work with. How can I load the auth.ini se

Re: How can I dynamically select the MCC account I want to work with

2014-03-11 Thread jaison . directi
In the AdwordsUser constructor what are $applicationToken and $authToken? Currently, in the auth.ini file I have used refresh_token. I'm not sure what the $applicationToken and $authToken are. On Monday, March 3, 2014 2:28:06 PM UTC-8, Anash P. Oommen (AdWords API Team) wrote: > > Hi Jaison, >

Getting "cannot find class ManualCPCAdGroupCriterionBids" when trying to set maxCPC of keywords that are being added to an adgroup

2014-03-11 Thread jaison . directi
Hi, I'm using the PHP library of adwords API. Addition of keywords to AdGroup works properly. If I try to set the maxCPC of a keyword during the addition process I get an error stating that the ManualCPCAdGroupCriterionBids class could not be found. I have been referring to the AddKeywordsExam

Re: Getting "cannot find class ManualCPCAdGroupCriterionBids" when trying to set maxCPC of keywords that are being added to an adgroup

2014-03-11 Thread jaison . directi
Hi Josh, I'm using version v201309 of the Adwords API. Shown below is the code I'm using to add keywords with maxCPC. function addKeywordsToAdGroup(AdWordsUser $user, $adGroupId, $keywords){ $user->SetClientCustomerId($_SESSION['adwordClientId']); $adGroupCriterionService = $user->GetSer

Re: Getting "cannot find class ManualCPCAdGroupCriterionBids" when trying to set maxCPC of keywords that are being added to an adgroup

2014-03-12 Thread jaison . directi
Thanks Josh, The snippet worked. On Wednesday, March 12, 2014 6:41:05 AM UTC-7, Josh Radcliff (AdWords API Team) wrote: > > Hi, > > It looks like you simply want to set a CPC bid on your ad group criteria. > If that's the case, then I'd recommend taking a look at the latest > AddKeywords.php<

Re: How can I dynamically select the MCC account I want to work with

2014-03-13 Thread jaison . directi
Hi Anash, I figured this out. The constructor helps to load MCC account configuration. Thanks a ton for the solution On Tuesday, March 11, 2014 4:01:58 AM UTC-7, jaison@gmail.com wrote: > > In the AdwordsUser constructor what are $applicationToken and $authToken? > Currently, in the auth.in

Getting empty string error when trying to get campaigns

2014-03-21 Thread jaison . directi
Hi, I'm trying to fetch campaigns in a client account but I get the following error: Failed to load response into DOM: DOMDocument::loadXML() [ domdocument.loadxml]: Empty string supplied as input in adw

Incomplete signup error even after providing billing details and accepting terms and conditions.

2013-07-14 Thread jaison . directi
I have been trying to run a few example codes like adding a campaign from the PHP client library for adwords. I get the following error: An error has occurred: [QuotaCheckError.INCOMPLETE_SIGNUP @ ; trigger:''] On checking the SOAP headers I see that it does not send any Auth Token. Is the err

Icomplete signup error despite accepting terms and conditions

2013-07-14 Thread jaison . directi
Hi, I am running PHP client library example to add a campaign to my test account but I am gettting the following error: An error has occurred: [QuotaCheckError.INCOMPLETE_SIGNUP @ ; trigger:''] I have entered my billing detail and accepted the terms and conditions as suggested in other posts a

Re: Icomplete signup error despite accepting terms and conditions

2013-07-17 Thread jaison . directi
> > Hi Danial, > My MCC Id is 737-535-8502 . Earlier today I received a mail stating that the Customer Id 629-552-4567 has been enabled for testing with the API. However, I am getting the same error and my developer token is still in the pending approval state. Thanks, Jaiso

Re: Icomplete signup error despite accepting terms and conditions

2013-07-18 Thread jaison . directi
Hi Danial, I have tried running the script again but it still gives me the same error. I had earlier opted to use NET Banking as the payment mode when I entered the billing details at the client account level. However, at the MCC level the system requires me to Fax my credit card details and is

Re: Icomplete signup error despite accepting terms and conditions

2013-07-19 Thread jaison . directi
Thanks Danial, I have entered the billing information and accepted the T&C on another MCC we have been using. I have created an account and applied for it to be converted to a test account. Once the account has been made a test account I'll run the scripts again. -- -- =~=~=~=~=~=~=~=~=~=~

Re: Icomplete signup error despite accepting terms and conditions

2013-07-22 Thread jaison . directi
Hi Danial, I created a new account and entered the billing details at the MCC level. I then applied for a test account. I am now able to run the scripts successfully. Thanks for all the help. Jaison -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussi

How do I set custom date range when downloading reports using adwords API PHP client library.

2013-11-29 Thread jaison . directi
I am using adwords PHP client library for my application. I want to to download reports for a custom date range and do not know the right parameters used to set the dates. Following is the code I'm currently using: $reportFileName = DS . 'AdPerformanceReport_dated.csv'; $reportType = 'AD_PERFO

Re: How do I set custom date range when downloading reports using adwords API PHP client library.

2013-12-02 Thread jaison . directi
Thanks Josh. Setting the dateRange solved the issue. On Monday, December 2, 2013 12:00:10 PM UTC-8, Josh Radcliff (AdWords API Team) wrote: > > Hi, > > You can achieve this by setting the dateRange attribute of your selector > to a DateRange with the desired min and max dates. > > Cheers, > Josh

How can I check if migration to latest version of adwords api was successful. My application seems to be using the previous adwords api version.

2013-12-04 Thread jaison . directi
I am currently using adwords api(v201306) PHP client library for my project. I would like to migrate to adwords api version 'v201309'. In order to migrate to the newer version, I have downloaded the PHP client library for the new version. I then copied the following folder - 'adwords_api_php_4.

Re: How can I check if migration to latest version of adwords api was successful. My application seems to be using the previous adwords api version.

2013-12-08 Thread jaison . directi
Thanks Josh. The logs confirm that the api version being used is actually v201309. On Friday, December 6, 2013 1:04:32 PM UTC-8, Josh Radcliff (AdWords API Team) wrote: > > Hi, > > One quick way to do this would be to enable all logging and confirm via > the logs. See the README's logging > s

Error in pulling adwords reports in a code that was working properly till Sep 03, 2015

2015-09-04 Thread jaison . directi
I am using this [https://github.com/googleads/aw-reporting] Java library to pull adwords reports. It was working properly yesterday. However, from 2015-09-03 18:45:11 UTC the code has failed to pull reports. Just wanted to check if there is an issue at adwords API end since I get the error Une