• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<html><body>
2<style>
3
4body, h1, h2, h3, div, span, p, pre, a {
5  margin: 0;
6  padding: 0;
7  border: 0;
8  font-weight: inherit;
9  font-style: inherit;
10  font-size: 100%;
11  font-family: inherit;
12  vertical-align: baseline;
13}
14
15body {
16  font-size: 13px;
17  padding: 1em;
18}
19
20h1 {
21  font-size: 26px;
22  margin-bottom: 1em;
23}
24
25h2 {
26  font-size: 24px;
27  margin-bottom: 1em;
28}
29
30h3 {
31  font-size: 20px;
32  margin-bottom: 1em;
33  margin-top: 1em;
34}
35
36pre, code {
37  line-height: 1.5;
38  font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
39}
40
41pre {
42  margin-top: 0.5em;
43}
44
45h1, h2, h3, p {
46  font-family: Arial, sans serif;
47}
48
49h1, h2, h3 {
50  border-bottom: solid #CCC 1px;
51}
52
53.toc_element {
54  margin-top: 0.5em;
55}
56
57.firstline {
58  margin-left: 2 em;
59}
60
61.method  {
62  margin-top: 1em;
63  border: solid 1px #CCC;
64  padding: 1em;
65  background: #EEE;
66}
67
68.details {
69  font-weight: bold;
70  font-size: 14px;
71}
72
73</style>
74
75<h1><a href="adsense_v1_3.html">AdSense Management API</a> . <a href="adsense_v1_3.accounts.html">accounts</a> . <a href="adsense_v1_3.accounts.reports.html">reports</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
78  <code><a href="adsense_v1_3.accounts.reports.saved.html">saved()</a></code>
79</p>
80<p class="firstline">Returns the saved Resource.</p>
81
82<p class="toc_element">
83  <code><a href="#generate">generate(accountId, startDate, endDate, locale=None, metric=None, currency=None, startIndex=None, useTimezoneReporting=None, sort=None, maxResults=None, filter=None, dimension=None)</a></code></p>
84<p class="firstline">Generate an AdSense report based on the report request sent in the query parameters. Returns the result as JSON; to retrieve output in CSV format specify "alt=csv" as a query parameter.</p>
85<p class="toc_element">
86  <code><a href="#generate_media">generate_media(accountId, startDate, endDate, locale=None, metric=None, currency=None, startIndex=None, useTimezoneReporting=None, sort=None, maxResults=None, filter=None, dimension=None)</a></code></p>
87<p class="firstline">Generate an AdSense report based on the report request sent in the query parameters. Returns the result as JSON; to retrieve output in CSV format specify "alt=csv" as a query parameter.</p>
88<h3>Method Details</h3>
89<div class="method">
90    <code class="details" id="generate">generate(accountId, startDate, endDate, locale=None, metric=None, currency=None, startIndex=None, useTimezoneReporting=None, sort=None, maxResults=None, filter=None, dimension=None)</code>
91  <pre>Generate an AdSense report based on the report request sent in the query parameters. Returns the result as JSON; to retrieve output in CSV format specify "alt=csv" as a query parameter.
92
93Args:
94  accountId: string, Account upon which to report. (required)
95  startDate: string, Start of the date range to report on in "YYYY-MM-DD" format, inclusive. (required)
96  endDate: string, End of the date range to report on in "YYYY-MM-DD" format, inclusive. (required)
97  locale: string, Optional locale to use for translating report output to a local language. Defaults to "en_US" if not specified.
98  metric: string, Numeric columns to include in the report. (repeated)
99  currency: string, Optional currency to use when reporting on monetary metrics. Defaults to the account's currency if not set.
100  startIndex: integer, Index of the first row of report data to return.
101  useTimezoneReporting: boolean, Whether the report should be generated in the AdSense account's local timezone. If false default PST/PDT timezone will be used.
102  sort: string, The name of a dimension or metric to sort the resulting report on, optionally prefixed with "+" to sort ascending or "-" to sort descending. If no prefix is specified, the column is sorted ascending. (repeated)
103  maxResults: integer, The maximum number of rows of report data to return.
104  filter: string, Filters to be run on the report. (repeated)
105  dimension: string, Dimensions to base the report on. (repeated)
106
107Returns:
108  An object of the form:
109
110    {
111    "kind": "adsense#report", # Kind this is, in this case adsense#report.
112    "rows": [ # The output rows of the report. Each row is a list of cells; one for each dimension in the request, followed by one for each metric in the request. The dimension cells contain strings, and the metric cells contain numbers.
113      [
114        "A String",
115      ],
116    ],
117    "warnings": [ # Any warnings associated with generation of the report.
118      "A String",
119    ],
120    "totals": [ # The totals of the report. This is the same length as any other row in the report; cells corresponding to dimension columns are empty.
121      "A String",
122    ],
123    "headers": [ # The header information of the columns requested in the report. This is a list of headers; one for each dimension in the request, followed by one for each metric in the request.
124      {
125        "currency": "A String", # The currency of this column. Only present if the header type is METRIC_CURRENCY.
126        "type": "A String", # The type of the header; one of DIMENSION, METRIC_TALLY, METRIC_RATIO, or METRIC_CURRENCY.
127        "name": "A String", # The name of the header.
128      },
129    ],
130    "totalMatchedRows": "A String", # The total number of rows matched by the report request. Fewer rows may be returned in the response due to being limited by the row count requested or the report row limit.
131    "averages": [ # The averages of the report. This is the same length as any other row in the report; cells corresponding to dimension columns are empty.
132      "A String",
133    ],
134  }</pre>
135</div>
136
137<div class="method">
138    <code class="details" id="generate_media">generate_media(accountId, startDate, endDate, locale=None, metric=None, currency=None, startIndex=None, useTimezoneReporting=None, sort=None, maxResults=None, filter=None, dimension=None)</code>
139  <pre>Generate an AdSense report based on the report request sent in the query parameters. Returns the result as JSON; to retrieve output in CSV format specify "alt=csv" as a query parameter.
140
141Args:
142  accountId: string, Account upon which to report. (required)
143  startDate: string, Start of the date range to report on in "YYYY-MM-DD" format, inclusive. (required)
144  endDate: string, End of the date range to report on in "YYYY-MM-DD" format, inclusive. (required)
145  locale: string, Optional locale to use for translating report output to a local language. Defaults to "en_US" if not specified.
146  metric: string, Numeric columns to include in the report. (repeated)
147  currency: string, Optional currency to use when reporting on monetary metrics. Defaults to the account's currency if not set.
148  startIndex: integer, Index of the first row of report data to return.
149  useTimezoneReporting: boolean, Whether the report should be generated in the AdSense account's local timezone. If false default PST/PDT timezone will be used.
150  sort: string, The name of a dimension or metric to sort the resulting report on, optionally prefixed with "+" to sort ascending or "-" to sort descending. If no prefix is specified, the column is sorted ascending. (repeated)
151  maxResults: integer, The maximum number of rows of report data to return.
152  filter: string, Filters to be run on the report. (repeated)
153  dimension: string, Dimensions to base the report on. (repeated)
154
155Returns:
156  The media object as a string.
157
158    </pre>
159</div>
160
161</body></html>