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="adexchangebuyer_v1_4.html">Ad Exchange Buyer API</a> . <a href="adexchangebuyer_v1_4.pubprofiles.html">pubprofiles</a></h1>
     76 <h2>Instance Methods</h2>
     77 <p class="toc_element">
     78   <code><a href="#list">list(accountId)</a></code></p>
     79 <p class="firstline">Gets the requested publisher profile(s) by publisher accountId.</p>
     80 <h3>Method Details</h3>
     81 <div class="method">
     82     <code class="details" id="list">list(accountId)</code>
     83   <pre>Gets the requested publisher profile(s) by publisher accountId.
     84 
     85 Args:
     86   accountId: integer, The accountId of the publisher to get profiles for. (required)
     87 
     88 Returns:
     89   An object of the form:
     90 
     91     {
     92     "profiles": [ # Profiles for the requested publisher
     93       {
     94         "googlePlusLink": "A String", # Link to publisher's Google+ page.
     95         "mediaKitLink": "A String", # The url for additional marketing and sales materials.
     96         "publisherProvidedForecast": { # This message carries publisher provided forecasting information. # Publisher provided forecasting information.
     97           "weeklyImpressions": "A String", # Publisher provided weekly impressions.
     98           "dimensions": [ # Publisher provided dimensions. E.g. geo, sizes etc...
     99             { # This message carries publisher provided breakdown. E.g. {dimension_type: 'COUNTRY', [{dimension_value: {id: 1, name: 'US'}}, {dimension_value: {id: 2, name: 'UK'}}]}
    100               "dimensionType": "A String",
    101               "dimensionValues": [
    102                 { # Value of the dimension.
    103                   "percentage": 42, # Percent of total impressions for a dimension type. e.g. {dimension_type: 'GENDER', [{dimension_value: {id: 1, name: 'MALE', percentage: 60}}]} Gender MALE is 60% of all impressions which have gender.
    104                   "id": 42, # Id of the dimension.
    105                   "name": "A String", # Name of the dimension mainly for debugging purposes, except for the case of CREATIVE_SIZE. For CREATIVE_SIZE, strings are used instead of ids.
    106                 },
    107               ],
    108             },
    109           ],
    110           "weeklyUniques": "A String", # Publisher provided weekly uniques.
    111         },
    112         "overview": "A String", # Publisher provided overview.
    113         "buyerPitchStatement": "A String", # A pitch statement for the buyer
    114         "isParent": True or False, # True, if this is the parent profile, which represents all domains owned by the publisher.
    115         "topHeadlines": [ # Publisher provided key metrics and rankings.
    116           "A String",
    117         ],
    118         "publisherProfileId": "A String", # Unique Id for publisher profile.
    119         "accountId": "A String", # The account id of the seller.
    120         "programmaticContact": "A String", # Programmatic contact for the publisher profile.
    121         "rateCardInfoLink": "A String", # Link to publisher rate card
    122         "seller": { # Seller of the publisher profile.
    123           "subAccountId": "A String", # Optional sub-account id for the seller.
    124           "accountId": "A String", # The unique id for the seller. The seller fills in this field. The seller account id is then available to buyer in the product.
    125         },
    126         "directContact": "A String", # Direct contact for the publisher profile.
    127         "samplePageLink": "A String", # Link for a sample content page.
    128         "state": "A String", # State of the publisher profile.
    129         "exchange": "A String", # Exchange where this publisher profile is from. E.g. AdX, Rubicon etc...
    130         "kind": "adexchangebuyer#publisherProfileApiProto", # Identifies what kind of resource this is. Value: the fixed string "adexchangebuyer#publisherProfileApiProto".
    131         "name": "A String",
    132         "publisherDomains": [ # The list of domains represented in this publisher profile. Empty if this is a parent profile.
    133           "A String",
    134         ],
    135         "isPublished": True or False, # True, if this profile is published. Deprecated for state.
    136         "audience": "A String", # Publisher provided info on its audience.
    137         "logoUrl": "A String", # The url to the logo for the publisher.
    138         "profileId": 42, # The pair of (seller.account_id, profile_id) uniquely identifies a publisher profile for a given publisher.
    139       },
    140     ],
    141   }</pre>
    142 </div>
    143 
    144 </body></html>