python api help

2012-06-20 Thread Jonathan Pentecost

Hey,

I've been trying to set up adwords api SANDBOX for python, but it just 
refuses to work. Is the readme out of date? It seems to be referring to 
files that don't exist 
"examples/adspygoogle/adwords/v201109/get_unit_count.py".

I think I am slowly getting somewhere but I cannot for the life of me get 
the 5 generated accounts. Can someone please help?

Attached is what I have so far.

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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
from adspygoogle.adwords.AdWordsClient import AdWordsClient
from adspygoogle.common import Utils


SERVER = 'https://adwords-sandbox.google.com'
EMAIL = 'vishenz...@gmail.com'
PASSWORD = 'x'
DEBUG = True
VERSION = 'v201109'

def get_campaigns(client):
PAGE_SIZE = 100


# Initialize appropriate service.
campaign_service = client.GetCampaignService(
  'https://adwords-sandbox.google.com', 'v201109_1')

# Construct selector and get all campaigns.
offset = 0
selector = {
  'fields': ['Id', 'Name', 'Status'],
  'paging': {
  'startIndex': str(offset),
  'numberResults': str(PAGE_SIZE)
  }
}

more_pages = True
while more_pages:
page = campaign_service.Get(selector)[0]
# Display results.
if 'entries' in page:
for campaign in page['entries']:
print ('Campaign with id \'%s\', name \'%s\', and status \'%s\' was '
   'found.' % (campaign['id'], campaign['name'],
   campaign['status']))
else:
 print 'No campaigns were found.'

offset += PAGE_SIZE
selector['paging']['startIndex'] = str(offset)
more_pages = offset < int(page['totalNumEntries'])

print
print ('Usage: %s units, %s operations' % (client.GetUnits(),
 client.GetOperations()))


if __name__ == '__main__':

headers = {
'email': EMAIL,
'password': PASSWORD,
'userAgent': 'AppEngine Demo',
'clientEmail': 'client_1+%s' % EMAIL,
'developerToken': '%s++AU' % EMAIL,
#'applicationToken': 'ignored',
}

config = {
'debug': Utils.BoolTypeConvert(DEBUG),
'xml_log': 'n',
'units_log': 'n',
'use_auth_token': 'n',
'use_pretty_xml': 'n',


}

client = AdWordsClient(headers=headers, config=config)
client.use_mcc = True

get_campaigns(client)

Re: PHP Client Library - Formatting Requests

2012-06-20 Thread Ashley Bennett
I am now able to get campaign stats for certain campaigns within our MCC as 
long as I include the clientCustomerID of the specific account I am looking 
for stats on.

I assume I have to craft a foreach loop in order to iterate through all of 
the accounts within our MCC in order to do some batch report processing?

On Wednesday, June 20, 2012 3:16:19 PM UTC-7, Ashley Bennett wrote:
>
> I am new to the PHP Client Library, but I have been able to connect to the 
> live service, I have my dev token, etc.
>
> However, whenever I try and run the example file GetCampaignStats.php, I 
> always get 'No matching campaigns were found.'
>
> Can anyone explain how I am supposed to format the request within my 
> example file to actually return data?  All I can find online are xml 
> definitions, and nothing regarding how to perform this in the php-specific 
> file examples.
>

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


PHP Client Library - Formatting Requests

2012-06-20 Thread Ashley Bennett
I am new to the PHP Client Library, but I have been able to connect to the 
live service, I have my dev token, etc.

However, whenever I try and run the example file GetCampaignStats.php, I 
always get 'No matching campaigns were found.'

Can anyone explain how I am supposed to format the request within my 
example file to actually return data?  All I can find online are xml 
definitions, and nothing regarding how to perform this in the php-specific 
file examples.

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


Adwords API Team - Please reply to any of my emails or forum posts or my acount email.

2012-06-20 Thread adwords account
Dear Adwords API team - We have a project that has been funded, we have 
customers waiting and if I do not hear back from someone soon I could loose 
my house and my wife will probably leave me.

When we first signed up the online docs said a couple of weeks. It has been 
months without a single reply. I have tried contacting you in every way 
that I can think of. Obviously if I do not get a reply soon we will loose 
everything that we have been working so hard for.

Please reply and let me know what the status is on our API approval is.

Thank you,
Customer ID: 808-683-3685

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: URL Performance Report failing on google's end

2012-06-20 Thread GregT
Some additional info:

With some playing around, it seems that the error (on google's side) goes 
away if I simply add "Domain" as one of the fields I pull back.  For 
example, what this particular report is normally doing is:

selector.setFields(new String[] {"AdGroupId", "CampaignId", 
"ConversionCategoryName", "Date", "CriteriaParameters", "Url", 
"AdNetworkType1", "Conversions", "ConversionsManyPerClick", 
"TotalConvValue", "ConversionTypeName"});

For the vast majority of clients, that is failing with HTTP status code 500 
from google in the past day or so.  Simply adding "Domain" as a field 
anywhere in the list of fields we retrieve causes the report to come back 
successfully.  I.e.:

selector.setFields(new String[] {"Domain", "AdGroupId", "CampaignId", 
"ConversionCategoryName", "Date", "CriteriaParameters", "Url", 
"AdNetworkType1", "Conversions", "ConversionsManyPerClick", 
"TotalConvValue", "ConversionTypeName"});

Note that for a small % of clients, it "works" with or without "Domain" 
selected as a field to return.  I say "works", because whether the report 
is retrieved from google with or without "Domain" in the selector, the 
"Url" fields returned are always just the domain rather than the real URL, 
which makes the report completely unusable.

For some of the clients, this even appears to be messed up in the AdWords 
UI.  For instance, going to the "Display Network" tab, clicking on the 
"Placements" tab under that, expanding the "Automatic placements", then 
clicking on the "See URL list" results in a table where the first column is 
supposed to be "URLs" (that's the header), but instead the column is 
missing from the results and all columns are shifted over one (so, e.g. the 
number of clicks is showing up as the ad group name and the very last 
column's values are completely missing).  I actually just refreshed the 
page right now, and it appears to be fixed in the UI -- but that's the way 
the UI was acting earlier today, but only for a few clients (not all the 
ones whose URL performance report is failing).

Again, this is just in the last day or so that this has been happening.

Thanks,
Greg


On Wednesday, June 20, 2012 11:46:55 AM UTC-5, GregT wrote:
>
> Hi,
>
> Starting around a day ago or so, almost all our calls to run the URL 
> Performance Report have failed on google's end.  We are getting an HTTP 
> status code of 500 and the message "!!!1|||-1|||Unexpected exception???". 
>  This is happening probably for about 90% of our clients.  The other 10% or 
> so get data returned from google, but it seems to be invalid data, where 
> the URLs returned are actually just the domain, not the real URL where the 
> ad was shown (as seen both by just looking at them but also when compared 
> to what the AdWords UI shows).
>
> Our code to download these reports has not changed anytime recently, and 
> our other reports that use the same code have been working fine (we also 
> run the keyword performance and criteria performance reports daily).
>
> It appears maybe there is an issue (or two) on google's end?
>
> Thanks,
> Greg
>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: What Combination of API Reports Equals the Web GUI's MCC Accounts View?

2012-06-20 Thread Jonathan Shaltz
A robust database design would use placeholder values (e.g., "not 
available") rather than discarding rows and destroying any hope of getting 
to a single source of the truth.  It's not a matter of a few bits not quite 
adding up - the Campaign Report gives impressions twice, triple, or five 
times as high as the total of the other reports.

Report definitions attached.  I don't see an e-mail address on your 
profile, but if you'd like to send it to the e-mail account I set up for 
this AdWords account, volusion.api.9420663...@gmail.com, we can avoid 
exposing either of our real e-mail address to whatever scrapers may be 
operating in this group, and exchange more detailed data without alarming 
the lawyers.

On Tuesday, June 19, 2012 9:18:06 AM UTC-5, Kevin Winter wrote:
>
> Hi,
>   In an ideal world, running any report and a campaign report with no 
> predicates should have totals that match.  However, due to various objects, 
> criteria, etc that are currently not exposed via the API, when you run a 
> lower level report, any criteria (such as zip codes) which are not 
> available in the API will be filtered out of the response (so there is no 
> row entry and the totals don't include this value).  The higher level 
> reports (Account, Campaign, etc) can't see which parts of the campaign are 
> for these un-exposed objects and will include metrics for them.
>
> This means that you won't be able to duplicate the UI screen you are 
> currently looking at (which is effectively the Campaign report) by using 
> the lower level reports.
>
> I'd be happy to try to reproduce this and figure out what exactly is 
> causing the discrepancy (since my example doesn't match your report types). 
>  Can you please send me the ReportDefinition XML you are sending via AdHoc 
> reports and the CID you are querying against?  Sending them offlist would 
> be fine.
>
> - Kevin Winter
> AdWords API Team
>
> On Monday, June 18, 2012 2:47:42 PM UTC-4, Jonathan Shaltz wrote:
>>
>> The Campaign Performance Report does total up to the same number of 
>> impressions shown in the web GUI.  So another way of expressing this 
>> question is, what combination of reports add up to the Campaign Performance 
>> Report?
>>
>> Arthur: Have you got an answer?
>> Ford: No.  But I've got a different name for the problem!
>>
>> On Wednesday, June 13, 2012 10:42:21 AM UTC-5, Kevin Winter wrote:
>>>
>>> Hi,
>>>   Could you please try to run a Campaign Performance Report with a 
>>> ReportDefinition like that below against this account?  When I ran it 
>>> against this account, the totals matched the UI, but due to the way i'm 
>>> running the report, I believe my results may include values normally 
>>> filtered out in the API.  If the results don't match the UI, could you 
>>> please email me the results off-list so I can compare?
>>>
>>> 
>>>   
>>> Name
>>> Status
>>> Clicks
>>> Impressions
>>> Ctr
>>> AverageCpc
>>> Cost
>>> 
>>>   20120401
>>>   20120430
>>> 
>>>   
>>>   Campaign
>>>   CAMPAIGN_PERFORMANCE_REPORT
>>>   CUSTOM_DATE
>>>   CSV
>>>   false
>>> 
>>>
>>> - Kevin Winter
>>> AdWords API Team
>>>
>>> On Monday, June 11, 2012 5:33:09 PM UTC-4, Jonathan Shaltz wrote:

 Thanks for the reply.  Marketing tells me that we *are* using dynamic 
 search ads, but they make up only about 0.4% of our impressions.  You're 
 saying there's no way to get this info via the API?  That's probably 
 acceptable, as long as the volume remains so small.

 Video being excluded would certainly explain why our TV account is not 
 showing up, but I believe that's the only account with such ads, so it 
 does 
 not explain any of the other gaps.  I'll confirm this point.

 I'm not interesting in duplicating functionality, I just want to see 
 approximately the same numbers from each source.  The main account, 
 #9420663870, had 14.22 M impressions in April, per the GUI MCC account 
 overview page.  The sum of the three ad hoc report types I listed earlier 
 comes to 5.57 M.


 On Monday, June 11, 2012 2:18:56 PM UTC-5, Kevin Winter wrote:
>
> Hi,
>   The UI is obviously updated more frequently than the API - we lean 
> towards more stable and less frequent updates for API changes.
>
> The API therefore lags behind the UI in some features. In particular, 
> there are a few objects that are filtered from the API, which could 
> explain 
> these discrepancies.
>
> Dynamic Search Ads will not come back in the API: 
> http://adwords.blogspot.com/2011/10/introducing-dynamic-search-ads-beta.html
>
> Video Campaigns for AdWords for video will not have any of their stats 
> visible via the API: http://www.google.com/ads/video/
>
> The UI is a dashboard intended to give an overview of account data. 
>  The reporting API is intended to provide access to various types of 
> stati

Re: API developer token taking crazy long

2012-06-20 Thread adwords account
Kevin - Still waiting for approval as well. 

Customer account number: 808-683-3685

On Friday, June 1, 2012 10:21:50 AM UTC-7, Kevin Winter wrote:
>
> Hi Stefan,
>   I apologize that your application has not been addressed.  I've 
> escalated this internally.
>
> - Kevin Winter
> AdWords API Team
>
> On Friday, June 1, 2012 12:12:28 PM UTC-4, Stefan wrote:
>>
>> Hi Kevin,
>>  
>> We are waiting for over 4 months now for a token that was approved 
>> already but without notice it got in status pending approval.
>>  
>> I have contacted google netherlands about 20 times they contacted APi 
>> team numerous of times as well, now i am hoping you could get this token up 
>> and running asap.
>> I dont need to explain that this is very frustrating, costing money and 
>> time.
>>  
>> Thanks 
>> Stefan
>> Our ID: 731-664-1723 
>>
>
> On Friday, June 1, 2012 12:12:28 PM UTC-4, Stefan wrote:
>>
>> Hi Kevin,
>>  
>> We are waiting for over 4 months now for a token that was approved 
>> already but without notice it got in status pending approval.
>>  
>> I have contacted google netherlands about 20 times they contacted APi 
>> team numerous of times as well, now i am hoping you could get this token up 
>> and running asap.
>> I dont need to explain that this is very frustrating, costing money and 
>> time.
>>  
>> Thanks 
>> Stefan
>> Our ID: 731-664-1723 
>>
>
> On Friday, June 1, 2012 12:12:28 PM UTC-4, Stefan wrote:
>>
>> Hi Kevin,
>>  
>> We are waiting for over 4 months now for a token that was approved 
>> already but without notice it got in status pending approval.
>>  
>> I have contacted google netherlands about 20 times they contacted APi 
>> team numerous of times as well, now i am hoping you could get this token up 
>> and running asap.
>> I dont need to explain that this is very frustrating, costing money and 
>> time.
>>  
>> Thanks 
>> Stefan
>> Our ID: 731-664-1723 
>>
>
> On Friday, June 1, 2012 12:12:28 PM UTC-4, Stefan wrote:
>>
>> Hi Kevin,
>>  
>> We are waiting for over 4 months now for a token that was approved 
>> already but without notice it got in status pending approval.
>>  
>> I have contacted google netherlands about 20 times they contacted APi 
>> team numerous of times as well, now i am hoping you could get this token up 
>> and running asap.
>> I dont need to explain that this is very frustrating, costing money and 
>> time.
>>  
>> Thanks 
>> Stefan
>> Our ID: 731-664-1723 
>>
>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Tracking site-link performance.

2012-06-20 Thread nf7588


On Friday, June 15, 2012 5:40:03 PM UTC+3, jstedman wrote:
>
> Does the Destination URL Report allow us to track individual site-link 
> performance?
>
> The fields I want to use to track this are:
>
> EffectiveDestinationUrl
> ClickType
> CampaignId
>
> By knowing a click is attributed to a site-link, and knowing the 
> destination urls assigned to the site-links configured in a given campaign, 
> can I know that particular site-links are performing better than others?
>
> This question depends on the EffectiveDestinationUrl actually being the 
> page the user was brought to as a result of the click. Is this actually how 
> the data is collected?
>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: EntityNotFound.INVALID_ID @ operations[?].operand;

2012-06-20 Thread Claudio Pomo
I want to retrieve all clientID from my MCC account. I'm using this code

 
  AdWordsUser user = new 
AdWordsUser(adwordsPropertyService.getEmail(), 
adwordsPropertyService.getPassword(),
  null, adwordsPropertyService.getUseragent(), 
adwordsPropertyService.getDeveloperToken(),
  adwordsPropertyService.getUseSandbox());

  InfoServiceInterface infoService = 
user.getService(AdWordsService.V201109.INFO_SERVICE);

  
  InfoSelector selector = new InfoSelector();
  selector.setApiUsageType(ApiUsageType.UNIT_COUNT_FOR_CLIENTS);
  String today = new SimpleDateFormat("MMdd").format(new 
Date());
  selector.setDateRange(new DateRange(today, today));
  selector.setIncludeSubAccounts(true);

  ApiUsageInfo apiUsageInfo = infoService.get(selector);
  for (ApiUsageRecord record : apiUsageInfo.getApiUsageRecords()) {
  ..

But apiUsageInfo.getApiUsageRecords return my only some clientId.
Have you any suggests?

On Friday, June 8, 2012 6:01:29 PM UTC+2, David Torres wrote:
>
> Hi Claudio,
>
> The problem is that you are specifying your MCC id as clientCustomerId, 
> instead what you want to specify the id of the account owner of those 
> campaigns.
>
> Best,
>
> -David Torres - AdWords API Team 
>
> On Friday, June 8, 2012 3:30:16 AM UTC-4, Claudio Pomo wrote:
>>
>> *requestId=0004c1bcd7694f100a3414e350c1*
>>
>> On Thursday, June 7, 2012 10:41:39 PM UTC+2, Claudio Pomo wrote:
>>>
>>> Hi David, 
>>>
>>> where I can found a request id?
>>>
>>> On Thursday, June 7, 2012 9:22:59 PM UTC+2, David Torres wrote:

 Hi Claudio,

 Can you post a request id? I'll be glad to check.

 Best,

 -David Torres - AdWords API Team

 On Tuesday, June 5, 2012 1:46:16 PM UTC-4, Claudio Pomo wrote:
>
> I'm using adwords API for java but when I try to "mutate" my 
> campaign I get this error:
>>
>> AxisFault
>>
>>  faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server
>>
>>  faultSubcode: 
>>
>>  faultString: [EntityNotFound.INVALID_ID @ operations[0].operand; 
>>> trigger:'CampaignId: 93996448', EntityNotFound.INVALID_ID @ 
>>> operations[1].operand; trigger:'CampaignId: ***', 
>>> EntityNotFound.INVALID_ID @ operations[2].operand; 
>>> trigger:'CampaignId: ***', EntityNotFound.INVALID_ID @ 
>>> operations[3].operand; trigger:'CampaignId: ***', 
>>> EntityNotFound.INVALID_ID @ operations[4].operand; 
>>> trigger:'CampaignId: ***', EntityNotFound.INVALID_ID @ 
>>> operations[5].operand; trigger:'CampaignId: ***', 
>>> EntityNotFound.INVALID_ID @ operations[6].operand; 
>>> trigger:'CampaignId: ***', EntityNotFound.INVALID_ID @ 
>>> operations[7].operand; trigger:'CampaignId: ***'
>>
>>
> I don't understand where is the problem because I've used adwords API 
> with PHP and there never still have been problem.
>
> I create a linkedList of "CampaignCriterionOperation" 
>
>> operations2.add(new CampaignCriterionOperation(Operator.ADD, 
>> campaignCriterionType, new CampaignCriterion(campaign.getId(), location, 
>> campaignCriterionType)));
>
>
> then I mutate the campaing
>
>> CampaignCriterionOperation[] operations = new 
>> CampaignCriterionOperation[operations2.size()];
>
> CampaignCriterionReturnValue result = 
>> campaignServiceOperation.mutate(operations2.toArray(operations));
>
>  
>


-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Create a new account using CreateAccountService

2012-06-20 Thread Kobi
Hi David,
 
I'm trying to create under my MCC account some more accounts, that some of 
them will have to be MCC accounts in order to manage their accounts under 
them.
 
How can I do it via the API? the property canManageClients is being ignored 
if I send it to the server and as far as I can see I can't edit any of my 
accounts via the api.
 
looking forward for your insight!

On Monday, June 18, 2012 8:41:00 PM UTC-4, David Torres wrote:

> You can also setup an MCC for your client, and create the account under 
> such MCC. Then your client will be able to manage those accounts through 
> his MCC.
>
> Best,
>
> -David Torres - AdWords API Team
>
> On Thursday, June 14, 2012 8:41:26 PM UTC-4, Ewan Heming wrote:
>>
>> I don't believe that there is any way to do that; although, I think you 
>> might be able to create an account linked to your MCC then invite your 
>> clients to access it, but the invite would need to be sent manually so I'm 
>> not sure if it would be any use to you.
>
>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: report cost clarification needed

2012-06-20 Thread Ewan Heming
Hi Jeremy,

Downloading reports is actually now free since v201109 of the API, but you 
need to use the new AdHoc 
Reports. The 
two items that you're referring to are part of the the deprecated 
ReportDefinitionService:
 the 
first one is for querying previously defined reports, which you're unlikely 
to need to do now; the second one is for obtaining a list of the fields 
available in a report, which could be useful, but you do need to pay one 
unit for each field in the list and there's also a full reference of the report 
types and 
fieldsthat you 
can use instead.

Regards,

Ewan 

On Wednesday, June 20, 2012 4:45:24 PM UTC+1, jeremy brooks wrote:
>
> The current rate card says
>  1 unit per 
> ReportDefinition
>  1 unit per  
> ReportDefinitionField
>
> I have two questions:
>
> Does that mean that, for instance, a keyword report requesting 35 fields 
> would cost 36  units total?  
>
> Does the cost change with quantity of keywords?
>
> Thanks,
> Jeremy
>

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


Are these fields available via the API?

2012-06-20 Thread Oliver
These fields are visible via the interface in the "Account Preferences" 
screen:

- Display Language
- Number Format
- Auto Tagging

Are they available via the API?

Oliver

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


URL Performance Report failing on google's end

2012-06-20 Thread GregT
Hi,

Starting around a day ago or so, almost all our calls to run the URL 
Performance Report have failed on google's end.  We are getting an HTTP 
status code of 500 and the message "!!!1|||-1|||Unexpected exception???". 
 This is happening probably for about 90% of our clients.  The other 10% or 
so get data returned from google, but it seems to be invalid data, where 
the URLs returned are actually just the domain, not the real URL where the 
ad was shown (as seen both by just looking at them but also when compared 
to what the AdWords UI shows).

Our code to download these reports has not changed anytime recently, and 
our other reports that use the same code have been working fine (we also 
run the keyword performance and criteria performance reports daily).

It appears maybe there is an issue (or two) on google's end?

Thanks,
Greg

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


Only 1 of 2 MCC accounts is showing via the API

2012-06-20 Thread David Pitt
The web based MCC panel is showing me two clients, however, when asking for 
the serviced accounts via the api, i am told:
*
There are 1 customers  under this account's hierarchy.

*Is this a common issue?*
*

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


report cost clarification needed

2012-06-20 Thread jeremy brooks
The current rate card says
 1 unit per 
ReportDefinition
 1 unit per  
ReportDefinitionField

I have two questions:

Does that mean that, for instance, a keyword report requesting 35 fields 
would cost 36  units total?  

Does the cost change with quantity of keywords?

Thanks,
Jeremy

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: AddAdGroups.php gives error

2012-06-20 Thread Kevin Winter
Hi,
  It sounds like this is a good explanation for the behavior you're seeing. 
 The Suhosin patch, as mentioned, causes problems when used with the 
AdWords PHP library that caused PHP to crash.  This explains the 
ERR_EMPTY_RESPONSE in chrome as well as the lack of logs.  I spoke with the 
old maintainer of the PHP library - there is no known workaround at this 
time - the SOAP modules in older versions is simply buggy.

- Kevin Winter
AdWords API Team

On Wednesday, June 20, 2012 11:03:05 AM UTC-4, Roy Roes wrote:
>
>  
> Is there a workaround?
>  
> Because installing another php version on the server isn''t really an 
> option.
>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: AddAdGroups.php gives error

2012-06-20 Thread Roy Roes
 
Is there a workaround?
 
Because installing another php version on the server isn''t really an 
option.

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


Update\Remove accounts from my adwords accounts (MCC account) via API

2012-06-20 Thread Kobi
Hi all,
I have been trying to find an answer for this topic around the web & inside 
the documentation but unfortunately I havent succeed on finding anything 
useful.
Is there an option via the AdWords api to edit or remove (account) 
according to their id? Each time i'm trying to do that I get an exception 
of an operation not supported.
Please let me know if there is a way to do so.
Best,
Kobi

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: AddAdGroups.php gives error

2012-06-20 Thread Roy Roes
I think I found something here:
 
http://code.google.com/p/google-api-adwords-php/wiki/PhpCompatibility
 
But this isn''t ginving any solution other than using another php version.

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: How to receive the logged in user info

2012-06-20 Thread PatrickvKleef
Thanks for the response Danial.

Multiple users can have access to a single clientcustomerId and I would 
like to distinguish them by display there name and emailaddress. Is it 
possible to use the Google API (UserInfo) in combination with the Google 
Adwords API and how can I do this?

Op woensdag 20 juni 2012 10:36:18 UTC+2 schreef Danial Klimkin het volgende:
>
> Hello PatrickvKleef,
>
>
> It is not possible to retrieve the logged in user email address via 
> AdWords API when using OAuth. I suggest to use clientCustomerId instead.
>
> You can obtain the list of customer IDs the logged in user has access to 
> via ServicesAccountService or InfoService and use them to whitelist users 
> to access your application.
>
>
> -Danial, AdWords API Team.
>
>
> On Thursday, June 14, 2012 10:56:14 AM UTC+4, PatrickvKleef wrote:
>>
>> Thanks for your response Anash!
>>
>> Maybe it's a good idea to explain what I want do. 
>> I would like to give certain users access to the web application I'm 
>> building. When using the Adwords API
>> client library it is possible to login users with OAuth, but the problem 
>> is that not everybody with
>> a google account should have access to the web application. So I would 
>> like to receive the email (and other user information only for displaying) 
>> of the user
>> and than check if the user has access rights. Is there a better way of 
>> give users access to your
>> web application that's using the Adwords API? 
>>
>> The user accounts that can access the web application has access to 
>> google adwords accounts (one or more client customer Ids).
>>
>> Greetings!
>>
>>
>>
>> Op donderdag 14 juni 2012 07:18:12 UTC+2 schreef Anash P. Oommen het 
>> volgende:
>>>
>>> Hi Patrick,
>>>
>>> AdWords doesn't contain information about the user name, profile image, 
>>> etc. What it has at best is the company name of the Advertiser account and 
>>> login email. You could use ServicedAccountService to retrieve these 
>>> information. See 
>>> https://developers.google.com/adwords/api/docs/reference/latest/ServicedAccountService
>>>  for 
>>> details.
>>>
>>> In case you are looking for the profile of the logged in user, that's 
>>> outside the scope of AdWords API. This link might help you: 
>>> http://stackoverflow.com/questions/7130648/get-user-info-via-google-api
>>>
>>> Cheers,
>>> Anash P. Oommen,
>>> AdWords API Advisor.
>>>
>>>
>>> On Wednesday, 13 June 2012 00:48:24 UTC+5:30, PatrickvKleef wrote:

 Hi!

 I'm new with using the Google Adwords API. I'm using OAuth to 
 authenticate users.
 I would like to receive user information (emailaddress, name, etc.) 
 when the user is authenticated with OAuth.

 Can somebody help me with 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


Re: AddAdGroups.php gives error

2012-06-20 Thread Roy Roes
Hi,
 
When I run the script in command prompt I get the following error:

ALERT - canary mismatch on efree() - heap overflow detected (attacker 
'REMOTE_ADDR not set', file 
'/home/httpd/vhosts/mydomain.nl/httpdocs/aw_api/Google/Api/Ads/Common/Lib/AdsSoapClient.php',
 
line 201)

 

Is that the error we are looking for?

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

2012-06-20 Thread Danial Klimkin
Hello Artur Meinzer,


All ads that are added with an exemption request are subject to review. In 
this particular case the place name is likely matches a pharma policy.

Please note the policy questions are out of scope for the API team and this 
forum. Please check with the general AdWords support if you have further 
questions.


-Danial, AdWords API Team.



On Monday, June 18, 2012 4:52:33 PM UTC+4, Artur Meinzer wrote:
>
> I was trying to upload some new ads and there are some ads which have 
> policy violation errors. So I add exemption requests on the ads with the 
> error. It works for most of them, but sometimes it fails with the following 
> message: [PolicyViolationError.POLICY_ERROR @ 
> operations[0].operand.ad.description2]. In this case the violating text is 
> Viagrande, which is a place in Italy. The external policy descriptions says 
> "This ad requires review before it can run", but why does the exemption 
> request not work?
>
> Thanks in advance,
> Artur
>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: How to receive the logged in user info

2012-06-20 Thread Danial Klimkin
Hello PatrickvKleef,


It is not possible to retrieve the logged in user email address via AdWords 
API when using OAuth. I suggest to use clientCustomerId instead.

You can obtain the list of customer IDs the logged in user has access to 
via ServicesAccountService or InfoService and use them to whitelist users 
to access your application.


-Danial, AdWords API Team.


On Thursday, June 14, 2012 10:56:14 AM UTC+4, PatrickvKleef wrote:
>
> Thanks for your response Anash!
>
> Maybe it's a good idea to explain what I want do. 
> I would like to give certain users access to the web application I'm 
> building. When using the Adwords API
> client library it is possible to login users with OAuth, but the problem 
> is that not everybody with
> a google account should have access to the web application. So I would 
> like to receive the email (and other user information only for displaying) 
> of the user
> and than check if the user has access rights. Is there a better way of 
> give users access to your
> web application that's using the Adwords API? 
>
> The user accounts that can access the web application has access to google 
> adwords accounts (one or more client customer Ids).
>
> Greetings!
>
>
>
> Op donderdag 14 juni 2012 07:18:12 UTC+2 schreef Anash P. Oommen het 
> volgende:
>>
>> Hi Patrick,
>>
>> AdWords doesn't contain information about the user name, profile image, 
>> etc. What it has at best is the company name of the Advertiser account and 
>> login email. You could use ServicedAccountService to retrieve these 
>> information. See 
>> https://developers.google.com/adwords/api/docs/reference/latest/ServicedAccountService
>>  for 
>> details.
>>
>> In case you are looking for the profile of the logged in user, that's 
>> outside the scope of AdWords API. This link might help you: 
>> http://stackoverflow.com/questions/7130648/get-user-info-via-google-api
>>
>> Cheers,
>> Anash P. Oommen,
>> AdWords API Advisor.
>>
>>
>> On Wednesday, 13 June 2012 00:48:24 UTC+5:30, PatrickvKleef wrote:
>>>
>>> Hi!
>>>
>>> I'm new with using the Google Adwords API. I'm using OAuth to 
>>> authenticate users.
>>> I would like to receive user information (emailaddress, name, etc.) when 
>>> the user is authenticated with OAuth.
>>>
>>> Can somebody help me with 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


Re: why keyword performance report different result by comparing results from HTTP Request and directly from mcc

2012-06-20 Thread Danial Klimkin
Hello Minius,


By default the AdHoc reports exclude inactive objects and those options 
could have impressions and clicks data on them.

To retrieve all objects, add a predicate for status and operator 'IN' and 
specify all possible states.


-Danial, AdWords API Team.



On Monday, June 18, 2012 1:05:51 PM UTC+4, Minius wrote:
>
> can someone look at my problem? Please
>
> 2012 m. birželis 13 d., trečiadienis 10:11:27 UTC+3, Minius rašė:
>>
>> Hi,
>>
>> I try to get keyword performance report by fallowing this specification:
>> https://developers.google.com/adwords/api/docs/guides/reporting?hl=lt.
>>
>> Everything works fine, except that result are different by comparing 
>> with results directly from MCC.
>> Totals of fallowing field:
>> clicks, cost
>> are different than from MCC form the same client and same data range.
>> Result from MCC is slightly larger than result from http request using 
>> AdHoc method.
>>
>> Why? 
>> Maybe someone you have suggestions on what to pay attention, or what 
>> might be wrong ?
>>
>> My code looks like:
>> // Account login details
>> $username = "xxx";
>> $password = "xxx";
>> $customerId = "xxx";  
>> $devToken = "xxx";
>>  
>> // Get an access code for the user
>> $url = "https://www.google.com/accounts/ClientLogin";;
>> $params = array(
>> "accountType" => "GOOGLE",
>> "Email" => $username,
>> "Passwd" => $password,
>> "service" => "adwords",
>> "source" => "test"
>> );
>>  
>> $curl = curl_init();
>> curl_setopt($curl, CURLOPT_URL, $url);
>> curl_setopt($curl, CURLOPT_HEADER, false);
>> curl_setopt($curl, CURLOPT_POST, true);
>> curl_setopt($curl, CURLOPT_POSTFIELDS, $params);
>> //curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
>> curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
>> $curlData = curl_exec($curl);
>> curl_close($curl);
>>  
>> // Parse the response
>> $curlData = explode("\n", $curlData);
>> $return = array();
>> foreach ($curlData as $value) {
>> $value = explode("=", $value, 2);
>> if (count($value) > 1) {
>> $return[$value[0]] = $value[1];
>> }
>> }
>> // Extract the access token
>> $authToken = $return["Auth"];
>> 
>> 
>> #
>> $httpHeaders = array(
>> "Authorization: GoogleLogin auth=$authToken",
>> "clientCustomerId: $customerId",
>> "developerToken: $devToken"
>> );
>> 
>> #
>> $reportDefinition = ""; 
>> $reportDefinition .= "";
>> $reportDefinition .= "Id";
>> $reportDefinition .= "Date";
>> $reportDefinition .= "ExternalCustomerId";
>> $reportDefinition .= "AccountDescriptiveName";
>> $reportDefinition .= "CampaignId";
>> $reportDefinition .= "Clicks";
>> $reportDefinition .= "AverageCpc";
>> $reportDefinition .= "Cost";
>> $reportDefinition .= "";
>> $reportDefinition .= "Keywords Performance 
>> Report";
>> $reportDefinition .= 
>> "KEYWORDS_PERFORMANCE_REPORT";
>> $reportDefinition .= "LAST_MONTH";
>> //$reportDefinition .= "CUSTOM_DATE";
>> $reportDefinition .= "CSV";
>> $reportDefinition .= 
>> "true";
>> $reportDefinition .= "";
>>  
>> $params = array("__rdxml" => $reportDefinition);
>> 
>> 
>> #
>> $url = "https://adwords.google.com/api/adwords/reportdownload/v201109
>> ";
>>  
>> $curl = curl_init();
>> curl_setopt($curl, CURLOPT_URL, $url);
>> curl_setopt($curl, CURLOPT_HEADER, false);
>> curl_setopt($curl, CURLOPT_POST, true);
>> curl_setopt($curl, CURLOPT_POSTFIELDS, $params);
>> curl_setopt($curl, CURLOPT_HTTPHEADER, $httpHeaders);
>> //curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
>> curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
>> $reportData = curl_exec($curl);
>> curl_close($curl);
>>  
>> print "$reportData\n";
>>
>>
>>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Sandbox and accounts hierarchy when MCC manages another MCCs

2012-06-20 Thread Danial Klimkin
Hello Łukasz,


The sandbox hierarchy is limited to 5 child accounts which are created 
automatically. It is not possible to crate any further account or have an 
mcc sub-account in the sandbox.


-Danial, AdWords API Team.


https://developers.google.com/adwords/api/docs/sandbox

On Tuesday, June 19, 2012 5:48:46 PM UTC+4, Łukasz Śliwa wrote:
>
> How to make accounts hierarchy in the sandbox? We need to test some cases 
> when our MCC account can manage another MCCs and their clients. Is it 
> possible to create account with can_manage_clients=true? I see in 
> references that can_manage_clients is readonly.

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 Developer Token Still Pending Approval?

2012-06-20 Thread Ivelin Vasilev
we faced the same problem we are waiting already 3 months, and there is no 
response from google at all. This is not normal, you can't make planing you 
can't make contracts with clients. Google blocks our work.



On Friday, May 4, 2012 6:17:15 PM UTC+3, James wrote:
>
> Our company applied for the AdWords API Developer Token way back in 
> January 2012.
>
> Four months have passed and it is still "Pending approval". Is this 
> normal? Is there anything I can do to expedite the process?
>
> If this isn't normal, who do I follow up with and what information do I 
> need to provide them?
>
> Thanks!
>
> James
>

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