Google::Adwords::ReportService

Google::Adwords::ReportService is a Perl module to interact with the Google Adwords ReportService API calls.
Download

Google::Adwords::ReportService Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Perl Artistic License
  • Price:
  • FREE
  • Publisher Name:
  • Rohan Almeida and Mathieu Jondet
  • Publisher web site:
  • http://search.cpan.org/~rohan/Google-Adwords-v0.6.0/lib/Google/Adwords/Data.pm

Google::Adwords::ReportService Tags


Google::Adwords::ReportService Description

Google::Adwords::ReportService is a Perl module to interact with the Google Adwords ReportService API calls. Google::Adwords::ReportService is a Perl module to interact with the Google Adwords ReportService API calls.SYNOPSIS use Google::Adwords::ReportService; # create the report service object my $report_service = Google::Adwords::ReportService->new(); # need to login to the Adwords service $report_service->email($email_address) ->password($password) ->developerToken($developer_token) ->applicationToken($app_token) ; # delete a report my $report_job_id = 123456; $report_service->deleteReport($report_job_id); # get all the jobs my @jobs = $report_service->getAllJobs(); # get status for report job my $status = $report_service->getReportJobStatus($report_job_id); # get gzip url for download my $gzip_url = $report_service->getGzipReportDownloadUrl($report_job_id); # get url for download my $url = $report_service->getReportDownloadUrl($report_job_id); # schedule a report my $job = Google::Adwords::ReportJob->new ->startDay('2006-08-01') ->endDay('2006-08-01') ->name('Test report via API') ->aggregationType('Daily') ->adWordsType('SearchOnly'); my $jobid = $report_service->scheduleReportJob('AccountReportJob', $job); Requirements: · Perl


Google::Adwords::ReportService Related Software