Re: API UNIT cost for Performance Report

2010-12-09 Thread Federico Ulfo
Hi Anash,

I need to know the total cost of the last PerformanceReport and
DownloadReport operation,
I know exsist getLastUnits but for performancereport I didn't found
it.

It doesn't exsist any method to get the last cost directly with PHP
API lib?

Thanks
Federico




On Nov 23, 12:51 am, AdWords API Advisor
adwordsapiadvi...@google.com wrote:
 Hi Federico,

 I'm not quite sure I follow your question. Are you looking for theAPIcostfor 
 individual method calls? You can find them 
 here:http://code.google.com/apis/adwords/docs/ratesheet.html.

 Cheers,
 Anash P. Oommen,
 AdWordsAPIAdvisor.

 On Nov 20, 11:09 am, federico ulfo rainelemen...@gmail.com wrote:

  How can I get thecostofApiUnitsfor the last Performance Report?
  Thanks



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


getLastUnits for performance report

2010-12-06 Thread Federico Ulfo
How can I get the last api units for performance report?
I know there's GetLastUnits but I don't know if I can use it with
performance report.

Thanks

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


API UNIT cost for Performance Report

2010-11-20 Thread federico ulfo
How can I get the cost of Api Units for the last Performance Report?
Thanks

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


How optimize PerformanceReport PHP?

2010-11-03 Thread federico ulfo
Hi,

PerformanceReport and DownloadReport  for 5 reports: account,
campaign, group, keyword  and  managedPlacement, is pretty slow.

I'm downloading account as CSV and all the others as GZIPPED_CSV, and
cache the report for
YESTERDAY, LAST_WEEK and LAST_MONTH. That's improved a lot my speed.

Do you have any idea to improve more the speed? Expecially the speed
of PerformanceReport / DownloadReport?

Thanks

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 can I get a list of all my MCC clients using the AdWords API ?

2010-11-02 Thread Federico Ulfo
Hi Gabriel,
in PHP is pretty easy:

?php

date_default_timezone_set( Europe/Rome );
error_reporting(E_STRICT | E_ALL);

include dirname(__FILE__) . '/../../src/Google/Api/Ads/AdWords/Lib/
AdWordsUser.php';

$user = new AdWordsUser(); // you must have configured the auth.ini
file with your MCC manager info / developer token
$servicedAccountService = $user-
GetServicedAccountService('v201008');
$selector = new ServicedAccountSelector();
$graph = $servicedAccountService-get($selector);

echo pre;
print_r( $graph );
echo /pre;

?

Best,
Federico
www.federicoulfo.it




On Nov 2, 11:00 am, Gabriel T lem...@gmail.com wrote:
 Hello,



 In my MCC I have a list of MCC clients. How can I get them with a
 command line ? With the API ?
 I can get all my accounts using a ServicedAccountService call to the
 SOAP ws but they are not sorted by clients.
 So how can I get the list of my clients ?

 Thank 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: Average Position for keywords

2010-11-02 Thread Federico Ulfo
Hi Farid

with PHP API you can do as follow:

?php

$path = dirname(__FILE__) . '/../../src';
set_include_path(get_include_path() . PATH_SEPARATOR . $path);

require_once 'Google/Api/Ads/AdWords/Lib/AdWordsUser.php';
require_once 'Google/Api/Ads/AdWords/Util/ReportUtils.php';

// Create ad group predicate.
$statusPredicate = new Predicate();
$statusPredicate-field = 'Id
$statusPredicate-operator = 'EQUALS';
$statusPredicate-values = array('YOUR KEYWORD ID HERE');

// Create selector.
$selector = new Selector();
$selector-predicates = array( $statusPredicate );
$selector-fields = $keywordsFields = array('AveragePosition');   //
Get Avg. position
/*
If you want other field, see here: 
http://code.google.com/apis/adwords/docs/appendix/reports.html#keywords.
An example it could be $selector-fields = $keywordsFields =
array('Id', 'AdGroupId', 'KeywordText', 'Status', 'Clicks',
'Impressions', 'AverageCpc', 'AverageCpm', 'Ctr', 'AveragePosition' );
*/

// Create report definition.
$reportDefinition = new ReportDefinition();
$reportDefinition-reportName = Keywords;
$reportDefinition-dateRangeType = $dateRangeType;
$reportDefinition-reportType = 'KEYWORDS_PERFORMANCE_REPORT';
$reportDefinition-downloadFormat = 'CSV';
$reportDefinition-selector = $selector;

// Create operations.
$operation = new ReportDefinitionOperation();
$operation-operand = $reportDefinition;
$operation-operator = 'ADD';

$operations[] = $operation;


// Add report definition.
$result = $reportDefinitionService-mutate($operations);

// Display report definitions.
if ($result != null)
foreach ($result as $reportDefinition) {
$csv = ReportUtils::DownloadReport($reportDefinition-id, $path =
null, $user);

$rows = explode( \n, $csv );
for($i=2;$icount($rows)-1;$i++)
$array[]=explode( , , $rows[$i] );

// $array contain your keyword info
echo pre;
print_r( $array );
}
?

Best,
Federico
http://www.federicoulfo.it



On Nov 1, 10:59 pm, Farid fparv...@gmail.com wrote:
 Is there anyway that I can find the average positon for a keyword.

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Average Position for keywords

2010-11-02 Thread Federico Ulfo
Hi Farid,

that's easy, with PHP API you can do as follow:

?php

include dirname(__FILE__) . '/../../src/Google/Api/Ads/AdWords/Lib/
AdWordsUser.php';
include dirname(__FILE__) . '/../../src/Google/Api/Ads/AdWords/
Util/ReportUtils.php';

$user = new AdWordsUser();
$user-SetClientId( $client_id ); // Select the client
$user-LogDefaults();
$reportDefinitionService = $user-
GetReportDefinitionService('v201008');

$operations = array();

// Create ad group predicate.
$statusPredicate = new Predicate();
$statusPredicate-field = 'Id
$statusPredicate-operator = 'EQUALS';
$statusPredicate-values = array('YOUR KEYWORD ID HERE');

// Create selector.
$selector = new Selector();
$selector-predicates = array( $statusPredicate );
$selector-fields = $keywordsFields =
array('AveragePosition');   //Get Avg. position
/* If you want other field, see here:
http://code.google.com/apis/adwords/docs/appendix/reports.html#keywords.
An example it could be $selector-fields = $keywordsFields =
array('Id', 'AdGroupId', 'KeywordText', 'Status', 'Clicks',
'Impressions', 'AverageCpc', 'AverageCpm', 'Ctr', 'AveragePosition' );
*/

// Create report definition.
$reportDefinition = new ReportDefinition();
$reportDefinition-reportName = Keywords;
$reportDefinition-dateRangeType = $dateRangeType;
$reportDefinition-reportType = 'KEYWORDS_PERFORMANCE_REPORT';
$reportDefinition-downloadFormat = 'CSV';
$reportDefinition-selector = $selector;

// Create operations.
$operation = new ReportDefinitionOperation();
$operation-operand = $reportDefinition;
$operation-operator = 'ADD';

$operations[] = $operation;

// Add report definition.
$result = $reportDefinitionService-mutate($operations);

// Display report definitions.
if ($result != null)

// Download the report
foreach ($result as $reportDefinition) {
$csv = ReportUtils::DownloadReport($reportDefinition-id,
$path = null, $user);
$rows = explode( \n, $csv );
for($i=2;$icount($rows)-1;$i++)
$array[]=explode( , , $rows[$i] );

// $array contain your keyword info
echo pre;
print_r( $array );
}

?

Best,
Federico
http://www.federicoulfo.it

On Nov 1, 10:59 pm, Farid fparv...@gmail.com wrote:
 Is there anyway that I can find the average positon for a keyword.

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Complete client report in a single API call (PHP)

2010-10-31 Thread federico ulfo
Hi and thanks, it finally works!
Here the PHP code to Get the Keywords Stats for a selected client with
ReportDefinitionService and downloadReport as Array:

?php

date_default_timezone_set( Europe/Rome );
error_reporting(E_STRICT | E_ALL);

require_once dirname(__FILE__) . '/../../src/Google/Api/Ads/AdWords/
Lib/AdWordsUser.php';
require_once dirname(__FILE__) . '/../../src/Google/Api/Ads/AdWords/
Util/ReportUtils.php';


$user = new AdWordsUser();
$user-SetClientId('123-123-1234');  // select the client with
clientId

$reportDefinitionService = $user-
GetReportDefinitionService('v201008');

// Create selector.
$selector = new Selector();
$selector-fields = array('Id', 'AdGroupId', 'KeywordText',
'KeywordMatchType', 'Impressions', 'Clicks', 'Cost');

// Create report definition.
$reportDefinition = new ReportDefinition();
$reportDefinition-reportName = 'Keywords performance report #' .
time();
$reportDefinition-dateRangeType = 'YESTERDAY';
$reportDefinition-reportType = 'ACCOUNT_PERFORMANCE_REPORT';
$reportDefinition-downloadFormat = 'CSV';
$reportDefinition-selector = $selector;

// Create operations.
$operation = new ReportDefinitionOperation();
$operation-operand = $reportDefinition;
$operation-operator = 'ADD';

$operations = array($operation);

// Add report definition.
$result = $reportDefinitionService-mutate($operations);

// Display report definitions.
if ($result != null)
foreach ($result as $reportDefinition) {

$csv = ReportUtils::DownloadReport($reportDefinition-id, 
$path
= null, $user); // get the Report in $csv

// Get the result in Array
$rows = explode( \n, $csv );
for($i=2;$icount($rows)-1;$i++)
$array[]=explode( , , $rows[$i] );
}

?


Best,
Federico
www.federicoulfo.it




On Oct 30, 1:39 am, AdWords API Advisor adwordsapiadvi...@google.com
wrote:
 Hi Frederico,

 There is no field called clientCustomerId that is available for the
 report type ACCOUNT_PERFORMANCE_REPORT:

  http://code.google.com/apis/adwords/docs/appendix/reports.html#account

 v201008 reports cannot target multiple client account, so ensure that
 the report definition is created in the account you wish to report on
 (set the clientCustomerId header in the request).

 Best,
 - Eric Koleda, AdWords API Tea,

 On Oct 27, 4:48 pm, federico ulfo rainelemen...@gmail.com wrote:

  Hi Anash,
  I tried to modify AddKeywordsPerformanceReportDefinition.php,
  I receive INVALID_FIELD_NAME_FOR_REPORT error,
  what's the correct Predicate::field for get the Customer stats?
  ---
    $user = new AdWordsUser();
    $user-LogDefaults();

    // Get the GetReportDefinitionService.
    $reportDefinitionService = $user-

  GetReportDefinitionService('v201008');

    // Create ad group predicate.
    $customer = new Predicate();
    $customer-field = 'clientCustomerId';
    $customer-operator = 'EQUALS';
    $customer-values = array(209-212-1229);

    // Create selector.
    $selector = new Selector();
    $selector-fields = array( 'Impressions', 'Clicks' );
    $selector-predicates = array($customer);

    // Create report definition.
    $reportDefinition = new ReportDefinition();
    $reportDefinition-reportName = 'Account Stats#' . time();
    $reportDefinition-dateRangeType = 'YESTERDAY';
    $reportDefinition-reportType = 'ACCOUNT_PERFORMANCE_REPORT';
    $reportDefinition-downloadFormat = 'XML';
    $reportDefinition-selector = $selector;

    // Create operations.
    $operation = new ReportDefinitionOperation();
    $operation-operand = $reportDefinition;
    $operation-operator = 'ADD';

    $operations = array($operation);

    // Add report definition.
    $result = $reportDefinitionService-mutate($operations);
  ---

  Thanks,
  Federico

  On Oct 27, 6:01 am, AdWords API Advisor adwordsapiadvi...@google.com
  wrote:

   Hi Federico,

   Try Account Performance report which was newly added in v201008. 
   Seehttp://code.google.com/apis/adwords/docs/appendix/reports.html#account
   for more details.

   Cheers,
   Anash P. Oommen,
   AdWords API Advisor.

   On Oct 26, 5:15 pm, federico ulfo rainelemen...@gmail.com wrote:

Hey Anash,

I mean the stats of a selected client (client_id: xxx-xxx-)
so clicks, impression, avg cpc, avg cpm, ctr, avg position ...

thanks
Federicowww.federicoulfo.it

On Oct 26, 12:12 pm, AdWords API Advisor

adwordsapiadvi...@google.com wrote:
 Hi Federico,

 Can you please clarify your question? What do you mean by tot. report
 of the selected client?

 Cheers,
 Anash P. Oommen,
 AdWords API Advisor.

 On Oct 25, 10:32 pm, Federico Ulfo federicotest...@gmail.com wrote:

  Hi Anash,

  thanks, 1st solution works well for me

ReportDefinition to get Network and Account Stats

2010-10-29 Thread Federico Ulfo
Hi,

in order to get the Network (into campaign), and also to get the
Account Stats,
I need to use GetReportDefinitionService. Are there any working
examples?

Or can you please help me to modify this example to make it retrieving
the networks:
http://code.google.com/p/google-api-adwords-php/source/browse/trunk/examples/v201008/AddKeywordsPerformanceReportDefinition.php

Do you know also how to modify that example to get the account stats?

Cheers,
Federico

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Complete client report in a single API call (PHP)

2010-10-27 Thread federico ulfo
Hi Anash,
I tried to modify AddKeywordsPerformanceReportDefinition.php,
I receive INVALID_FIELD_NAME_FOR_REPORT error,
what's the correct Predicate::field for get the Customer stats?
---
  $user = new AdWordsUser();
  $user-LogDefaults();

  // Get the GetReportDefinitionService.
  $reportDefinitionService = $user-
GetReportDefinitionService('v201008');

  // Create ad group predicate.
  $customer = new Predicate();
  $customer-field = 'clientCustomerId';
  $customer-operator = 'EQUALS';
  $customer-values = array(209-212-1229);

  // Create selector.
  $selector = new Selector();
  $selector-fields = array( 'Impressions', 'Clicks' );
  $selector-predicates = array($customer);

  // Create report definition.
  $reportDefinition = new ReportDefinition();
  $reportDefinition-reportName = 'Account Stats#' . time();
  $reportDefinition-dateRangeType = 'YESTERDAY';
  $reportDefinition-reportType = 'ACCOUNT_PERFORMANCE_REPORT';
  $reportDefinition-downloadFormat = 'XML';
  $reportDefinition-selector = $selector;

  // Create operations.
  $operation = new ReportDefinitionOperation();
  $operation-operand = $reportDefinition;
  $operation-operator = 'ADD';

  $operations = array($operation);

  // Add report definition.
  $result = $reportDefinitionService-mutate($operations);
---


Thanks,
Federico



On Oct 27, 6:01 am, AdWords API Advisor adwordsapiadvi...@google.com
wrote:
 Hi Federico,

 Try Account Performance report which was newly added in v201008. 
 Seehttp://code.google.com/apis/adwords/docs/appendix/reports.html#account
 for more details.

 Cheers,
 Anash P. Oommen,
 AdWords API Advisor.

 On Oct 26, 5:15 pm, federico ulfo rainelemen...@gmail.com wrote:

  Hey Anash,

  I mean the stats of a selected client (client_id: xxx-xxx-)
  so clicks, impression, avg cpc, avg cpm, ctr, avg position ...

  thanks
  Federicowww.federicoulfo.it

  On Oct 26, 12:12 pm, AdWords API Advisor

  adwordsapiadvi...@google.com wrote:
   Hi Federico,

   Can you please clarify your question? What do you mean by tot. report
   of the selected client?

   Cheers,
   Anash P. Oommen,
   AdWords API Advisor.

   On Oct 25, 10:32 pm, Federico Ulfo federicotest...@gmail.com wrote:

Hi Anash,

thanks, 1st solution works well for me!
How can I get the tot. report of the selected client? It looks like is
not always the sum of all campaign reports.

Do you think is it possible to do a single report using
scheduleRerportJob?http://code.google.com/apis/adwords/docs/developer/ReportService.html...

When completed I'll share my PHP code.

Best,
Federicowww.federicoulfo.it

On Oct 25, 1:26 pm, AdWords API Advisor adwordsapiadvi...@google.com
wrote:

 HI Federico,

 You can't get the whole account details in a single call, you will
 need at least 4 API calls (a CampaignService.get(),
 AdGroupService.get(), AdGroupAdService.get() and
 AdGroupCriterionService.get()), and a reasonable amount of code to
 organize the objects in the required hierarchical order.

 Another alternative is to run 1 performancereporteach for Campaign,
 AdGroups, Keywords and Ads, but still you need code to parse and put
 the stats in the desired hierarchical form.

 Cheers,
 Anash P. Oommen,
 AdWords API Advisor.

 On Oct 23, 7:02 pm, federico ulfo rainelemen...@gmail.com wrote:

  Hi,
  is it possible to get the complete clientreport(as follow) in a
  single API call?
  CLIENT                      clicks, impression, avg CPC, avg CPM...
   --  CAMPAIGNS
     --  GROUPS
         --  KEYWORDS

  Thanks,
  Federico



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


Get Account stats - client PHP (v201008)

2010-10-26 Thread federico ulfo
How can I get the account stats (clicks, impr. cpc, etc.) with the
client PHP?

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Complete client report in a single API call (PHP)

2010-10-25 Thread Federico Ulfo
Hi Anash,

thanks, 1st solution works well for me!
How can I get the tot. report of the selected client? It looks like is
not always the sum of all campaign reports.

Do you think is it possible to do a single report using
scheduleRerportJob?
http://code.google.com/apis/adwords/docs/developer/ReportService.html#scheduleReportJob

When completed I'll share my PHP code.

Best,
Federico
www.federicoulfo.it




On Oct 25, 1:26 pm, AdWords API Advisor adwordsapiadvi...@google.com
wrote:
 HI Federico,

 You can't get the whole account details in a single call, you will
 need at least 4 API calls (a CampaignService.get(),
 AdGroupService.get(), AdGroupAdService.get() and
 AdGroupCriterionService.get()), and a reasonable amount of code to
 organize the objects in the required hierarchical order.

 Another alternative is to run 1 performancereporteach for Campaign,
 AdGroups, Keywords and Ads, but still you need code to parse and put
 the stats in the desired hierarchical form.

 Cheers,
 Anash P. Oommen,
 AdWords API Advisor.

 On Oct 23, 7:02 pm, federico ulfo rainelemen...@gmail.com wrote:

  Hi,
  is it possible to get the complete clientreport(as follow) in a
  single API call?
  CLIENT                      clicks, impression, avg CPC, avg CPM...
   --  CAMPAIGNS
     --  GROUPS
         --  KEYWORDS

  Thanks,
  Federico



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


Complete client report in a single API call (PHP)

2010-10-23 Thread federico ulfo
Hi,
is it possible to get the complete client report (as follow) in a
single API call?
CLIENT  clicks, impression, avg CPC, avg CPM...
 --  CAMPAIGNS
   --  GROUPS
   --  KEYWORDS

Thanks,
Federico

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: QuotaCheckError.INCOMPLETE_SIGNUP_LATEST_ADWORDS_API_TNC_NOT_AGREED

2010-10-15 Thread federico ulfo
Can somebody please tell me what I've to do?
I've the api token and added the billing information, now I need to
connect to the adwords MCC.

Thanks,

Federico
PHP / Google Maps API CertDev


On Oct 14, 2:39 pm, federico ulfo rainelemen...@gmail.com wrote:
 Hey Anash,
 here the last requestId: 9f129703112991d6264c99d38394477c
 thanks,

 Federico
 PHP / Google Cert.Dev.

 On Oct 13, 9:52 am, AdWords API Advisor adwordsapiadvi...@google.com
 wrote:

  HiFederico,

  Could you post the requestId for a failed request so I can look into
  this?

  Cheers,
  Anash P. Oommen,
  AdWords API Advisor.

  On Oct 12, 1:37 pm,FedericoUlfofedericotest...@gmail.com wrote:

   Hi,

   my developer token was accepted and I my billing information for Api
   Units was accepted too,
   now when I try to connect to one account of the MCC this is the error
   I receive.

   How can I make it working?



-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: QuotaCheckError.INCOMPLETE_SIGNUP_LATEST_ADWORDS_API_TNC_NOT_AGREED

2010-10-14 Thread federico ulfo
Hey Anash,
here the last requestId: 9f129703112991d6264c99d38394477c
thanks,

Federico
PHP / Google Cert.Dev.

On Oct 13, 9:52 am, AdWords API Advisor adwordsapiadvi...@google.com
wrote:
 HiFederico,

 Could you post the requestId for a failed request so I can look into
 this?

 Cheers,
 Anash P. Oommen,
 AdWords API Advisor.

 On Oct 12, 1:37 pm,FedericoUlfofedericotest...@gmail.com wrote:

  Hi,

  my developer token was accepted and I my billing information for Api
  Units was accepted too,
  now when I try to connect to one account of the MCC this is the error
  I receive.

  How can I make it working?



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


QuotaCheckError.INCOMPLETE_SIGNUP_LATEST_ADWORDS_API_TNC_NOT_AGREED

2010-10-12 Thread Federico Ulfo
Hi,

my developer token was accepted and I my billing information for Api
Units was accepted too,
now when I try to connect to one account of the MCC this is the error
I receive.

How can I make it working?

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 set API Access and API units

2010-09-27 Thread federico ulfo
Hi Anash,
thanks, I just found out that I need a developer token, so I requested
one,
I'm positive this will solve my connection problem!
Now I hope it will be easy to get all clients of the MCC!


On Sep 27, 2:36 pm, AdWords API Advisor adwordsapiadvi...@google.com
wrote:
 Hi Federico,

 Is it possible to post the requestId of a failed request? I can check
 the logs and figure out what went wrong with the request.

 Cheers,
 Anash P. Oommen,
 AdWords API Advisor.

 On Sep 27, 3:54 pm, federico ulfo rainelemen...@gmail.com wrote:

  In the adwords help I found that is possible to add one client to an
  account and set him API access.
  My client has an account as administrator of the MCC and has
  access User interface and API,
  so I assume I can create an application account and give to it API
  access for all MCC, am I right?

  In the case I've to add the clients one by one and set API access to my
  application account,
  how can I get all my clients list of the MCC by API?

  thanks,
  Federico



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


How set API Access and API units

2010-09-25 Thread federico ulfo
Hi,
trying to connect to adwords with API PHP I receive an error message,
CLIENT_EMAIL_INVALID.
I checked auth.ini and settings.ini, it looks everything is fine,
so email, password, clientId, server, and API version (v201008).

After checking that we just notice that my account has access as
administrator,
instead the administrator of the MCC has access as User Interface and
API.

How can we set API access and how add API units to my account?

Thanks,
Federico Ulfo -- Certified Google Developer

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


How to populate the sandbox

2010-09-23 Thread federico ulfo
I'm working on an application that show the client list of adwords,
I need to populate the sandbox to work on it, can I export the clients
list from (published) adwords to the sandbox?
Alternatively, how can I populate the sandbox in easy way?

Thanks,
Federico
www.federicoulfo.it

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