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