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 "profiles": [ # Profiles for the requested publisher 101 { 102 "audience": "A String", # Publisher provided info on its audience. 103 "buyerPitchStatement": "A String", # A pitch statement for the buyer 104 "directContact": "A String", # Direct contact for the publisher profile. 105 "exchange": "A String", # Exchange where this publisher profile is from. E.g. AdX, Rubicon etc... 106 "forecastInventory": "A String", 107 "googlePlusLink": "A String", # Link to publisher's Google+ page. 108 "isParent": True or False, # True, if this is the parent profile, which represents all domains owned by the publisher. 109 "isPublished": True or False, # True, if this profile is published. Deprecated for state. 110 "kind": "adexchangebuyer#publisherProfileApiProto", # Identifies what kind of resource this is. Value: the fixed string "adexchangebuyer#publisherProfileApiProto". 111 "logoUrl": "A String", # The url to the logo for the publisher. 112 "mediaKitLink": "A String", # The url for additional marketing and sales materials. 113 "name": "A String", 114 "overview": "A String", # Publisher provided overview. 115 "profileId": 42, # The pair of (seller.account_id, profile_id) uniquely identifies a publisher profile for a given publisher. 116 "programmaticContact": "A String", # Programmatic contact for the publisher profile. 117 "publisherAppIds": [ # The list of app IDs represented in this publisher profile. Empty if this is a parent profile. Deprecated in favor of publisher_app. 118 "A String", 119 ], 120 "publisherApps": [ # The list of apps represented in this publisher profile. Empty if this is a parent profile. 121 { 122 "appStore": "A String", 123 "externalAppId": "A String", 124 }, 125 ], 126 "publisherDomains": [ # The list of domains represented in this publisher profile. Empty if this is a parent profile. 127 "A String", 128 ], 129 "publisherProfileId": "A String", # Unique Id for publisher profile. 130 "publisherProvidedForecast": { # This message carries publisher provided forecasting information. # Publisher provided forecasting information. 131 "dimensions": [ # Publisher provided dimensions. E.g. geo, sizes etc... 132 { # This message carries publisher provided breakdown. E.g. {dimension_type: 'COUNTRY', [{dimension_value: {id: 1, name: 'US'}}, {dimension_value: {id: 2, name: 'UK'}}]} 133 "dimensionType": "A String", 134 "dimensionValues": [ 135 { # Value of the dimension. 136 "id": 42, # Id of the dimension. 137 "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. 138 "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. 139 }, 140 ], 141 }, 142 ], 143 "weeklyImpressions": "A String", # Publisher provided weekly impressions. 144 "weeklyUniques": "A String", # Publisher provided weekly uniques. 145 }, 146 "rateCardInfoLink": "A String", # Link to publisher rate card 147 "samplePageLink": "A String", # Link for a sample content page. 148 "seller": { # Seller of the publisher profile. 149 "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. 150 "subAccountId": "A String", # Optional sub-account id for the seller. 151 }, 152 "state": "A String", # State of the publisher profile. 153 "topHeadlines": [ # Publisher provided key metrics and rankings. 154 "A String", 155 ], 156 }, 157 ], 158}</pre> 159</div> 160 161</body></html>