Home | History | Annotate | Download | only in dyn
      1 <html><body>
      2 <style>
      3 
      4 body, 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 
     15 body {
     16   font-size: 13px;
     17   padding: 1em;
     18 }
     19 
     20 h1 {
     21   font-size: 26px;
     22   margin-bottom: 1em;
     23 }
     24 
     25 h2 {
     26   font-size: 24px;
     27   margin-bottom: 1em;
     28 }
     29 
     30 h3 {
     31   font-size: 20px;
     32   margin-bottom: 1em;
     33   margin-top: 1em;
     34 }
     35 
     36 pre, code {
     37   line-height: 1.5;
     38   font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
     39 }
     40 
     41 pre {
     42   margin-top: 0.5em;
     43 }
     44 
     45 h1, h2, h3, p {
     46   font-family: Arial, sans serif;
     47 }
     48 
     49 h1, 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="adexchangeseller_v2_0.html">Ad Exchange Seller API</a> . <a href="adexchangeseller_v2_0.accounts.html">accounts</a> . <a href="adexchangeseller_v2_0.accounts.reports.html">reports</a></h1>
     76 <h2>Instance Methods</h2>
     77 <p class="toc_element">
     78   <code><a href="adexchangeseller_v2_0.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, sort=None, locale=None, metric=None, maxResults=None, dimension=None, startIndex=None, filter=None)</a></code></p>
     84 <p class="firstline">Generate an Ad Exchange 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, sort=None, locale=None, metric=None, maxResults=None, dimension=None, startIndex=None, filter=None)</a></code></p>
     87 <p class="firstline">Generate an Ad Exchange 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, sort=None, locale=None, metric=None, maxResults=None, dimension=None, startIndex=None, filter=None)</code>
     91   <pre>Generate an Ad Exchange 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 
     93 Args:
     94   accountId: string, Account which owns the generated 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   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)
     98   locale: string, Optional locale to use for translating report output to a local language. Defaults to "en_US" if not specified.
     99   metric: string, Numeric columns to include in the report. (repeated)
    100   maxResults: integer, The maximum number of rows of report data to return.
    101   dimension: string, Dimensions to base the report on. (repeated)
    102   startIndex: integer, Index of the first row of report data to return.
    103   filter: string, Filters to be run on the report. (repeated)
    104 
    105 Returns:
    106   An object of the form:
    107 
    108     {
    109     "kind": "adexchangeseller#report", # Kind this is, in this case adexchangeseller#report.
    110     "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.
    111       [
    112         "A String",
    113       ],
    114     ],
    115     "warnings": [ # Any warnings associated with generation of the report.
    116       "A String",
    117     ],
    118     "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.
    119       "A String",
    120     ],
    121     "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.
    122       {
    123         "currency": "A String", # The currency of this column. Only present if the header type is METRIC_CURRENCY.
    124         "type": "A String", # The type of the header; one of DIMENSION, METRIC_TALLY, METRIC_RATIO, or METRIC_CURRENCY.
    125         "name": "A String", # The name of the header.
    126       },
    127     ],
    128     "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.
    129     "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.
    130       "A String",
    131     ],
    132   }</pre>
    133 </div>
    134 
    135 <div class="method">
    136     <code class="details" id="generate_media">generate_media(accountId, startDate, endDate, sort=None, locale=None, metric=None, maxResults=None, dimension=None, startIndex=None, filter=None)</code>
    137   <pre>Generate an Ad Exchange 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.
    138 
    139 Args:
    140   accountId: string, Account which owns the generated report. (required)
    141   startDate: string, Start of the date range to report on in "YYYY-MM-DD" format, inclusive. (required)
    142   endDate: string, End of the date range to report on in "YYYY-MM-DD" format, inclusive. (required)
    143   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)
    144   locale: string, Optional locale to use for translating report output to a local language. Defaults to "en_US" if not specified.
    145   metric: string, Numeric columns to include in the report. (repeated)
    146   maxResults: integer, The maximum number of rows of report data to return.
    147   dimension: string, Dimensions to base the report on. (repeated)
    148   startIndex: integer, Index of the first row of report data to return.
    149   filter: string, Filters to be run on the report. (repeated)
    150 
    151 Returns:
    152   The media object as a string.
    153 
    154     </pre>
    155 </div>
    156 
    157 </body></html>