blob: e6c6e908ef587366b08bc4f13df61519205de53d [file] [log] [blame]
John Asmuth614db982014-04-24 15:46:26 -04001<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="analytics_v3.html">Google Analytics API</a> . <a href="analytics_v3.management.html">management</a> . <a href="analytics_v3.management.accountUserLinks.html">accountUserLinks</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070078 <code><a href="#close">close()</a></code></p>
79<p class="firstline">Close httplib2 connections.</p>
80<p class="toc_element">
John Asmuth614db982014-04-24 15:46:26 -040081 <code><a href="#delete">delete(accountId, linkId)</a></code></p>
82<p class="firstline">Removes a user from the given account.</p>
83<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070084 <code><a href="#insert">insert(accountId, body=None)</a></code></p>
John Asmuth614db982014-04-24 15:46:26 -040085<p class="firstline">Adds a new user to the given account.</p>
86<p class="toc_element">
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -080087 <code><a href="#list">list(accountId, max_results=None, start_index=None)</a></code></p>
John Asmuth614db982014-04-24 15:46:26 -040088<p class="firstline">Lists account-user links for a given account.</p>
89<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070090 <code><a href="#update">update(accountId, linkId, body=None)</a></code></p>
John Asmuth614db982014-04-24 15:46:26 -040091<p class="firstline">Updates permissions for an existing user on the given account.</p>
92<h3>Method Details</h3>
93<div class="method">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070094 <code class="details" id="close">close()</code>
95 <pre>Close httplib2 connections.</pre>
96</div>
97
98<div class="method">
John Asmuth614db982014-04-24 15:46:26 -040099 <code class="details" id="delete">delete(accountId, linkId)</code>
100 <pre>Removes a user from the given account.
101
102Args:
103 accountId: string, Account ID to delete the user link for. (required)
104 linkId: string, Link ID to delete the user link for. (required)
105</pre>
106</div>
107
108<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700109 <code class="details" id="insert">insert(accountId, body=None)</code>
John Asmuth614db982014-04-24 15:46:26 -0400110 <pre>Adds a new user to the given account.
111
112Args:
113 accountId: string, Account ID to create the user link for. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700114 body: object, The request body.
John Asmuth614db982014-04-24 15:46:26 -0400115 The object takes the form of:
116
117{ # JSON template for an Analytics Entity-User Link. Returns permissions that a user has for an entity.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800118 &quot;id&quot;: &quot;A String&quot;, # Entity user link ID
119 &quot;permissions&quot;: { # Permissions the user has for this entity.
120 &quot;effective&quot;: [ # Effective permissions represent all the permissions that a user has for this entity. These include any implied permissions (e.g., EDIT implies VIEW) or inherited permissions from the parent entity. Effective permissions are read-only.
121 &quot;A String&quot;,
122 ],
123 &quot;local&quot;: [ # Permissions that a user has been assigned at this very level. Does not include any implied or inherited permissions. Local permissions are modifiable.
124 &quot;A String&quot;,
125 ],
126 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800127 &quot;userRef&quot;: { # JSON template for a user reference. # User reference.
128 &quot;kind&quot;: &quot;analytics#userRef&quot;,
129 &quot;id&quot;: &quot;A String&quot;, # User ID.
130 &quot;email&quot;: &quot;A String&quot;, # Email ID of this user.
131 },
132 &quot;kind&quot;: &quot;analytics#entityUserLink&quot;, # Resource type for entity user link.
133 &quot;selfLink&quot;: &quot;A String&quot;, # Self link for this resource.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800134 &quot;entity&quot;: { # Entity for this link. It can be an account, a web property, or a view (profile).
135 &quot;accountRef&quot;: { # JSON template for a linked account. # Account for this link.
136 &quot;kind&quot;: &quot;analytics#accountRef&quot;, # Analytics account reference.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800137 &quot;id&quot;: &quot;A String&quot;, # Account ID.
138 &quot;name&quot;: &quot;A String&quot;, # Account name.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800139 &quot;href&quot;: &quot;A String&quot;, # Link for this account.
140 },
141 &quot;profileRef&quot;: { # JSON template for a linked view (profile). # View (Profile) for this link.
142 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this view (profile) belongs.
143 &quot;id&quot;: &quot;A String&quot;, # View (Profile) ID.
144 &quot;href&quot;: &quot;A String&quot;, # Link for this view (profile).
145 &quot;name&quot;: &quot;A String&quot;, # Name of this view (profile).
146 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for the web property to which this view (profile) belongs.
147 &quot;webPropertyId&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY to which this view (profile) belongs.
148 &quot;kind&quot;: &quot;analytics#profileRef&quot;, # Analytics view (profile) reference.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700149 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800150 &quot;webPropertyRef&quot;: { # JSON template for a web property reference. # Web property for this link.
151 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for this web property.
152 &quot;name&quot;: &quot;A String&quot;, # Name of this web property.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800153 &quot;href&quot;: &quot;A String&quot;, # Link for this web property.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800154 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this web property belongs.
155 &quot;id&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY.
156 &quot;kind&quot;: &quot;analytics#webPropertyRef&quot;, # Analytics web property reference.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700157 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800158 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800159 }
160
161
162Returns:
163 An object of the form:
164
165 { # JSON template for an Analytics Entity-User Link. Returns permissions that a user has for an entity.
166 &quot;id&quot;: &quot;A String&quot;, # Entity user link ID
167 &quot;permissions&quot;: { # Permissions the user has for this entity.
168 &quot;effective&quot;: [ # Effective permissions represent all the permissions that a user has for this entity. These include any implied permissions (e.g., EDIT implies VIEW) or inherited permissions from the parent entity. Effective permissions are read-only.
169 &quot;A String&quot;,
170 ],
171 &quot;local&quot;: [ # Permissions that a user has been assigned at this very level. Does not include any implied or inherited permissions. Local permissions are modifiable.
172 &quot;A String&quot;,
173 ],
174 },
175 &quot;userRef&quot;: { # JSON template for a user reference. # User reference.
176 &quot;kind&quot;: &quot;analytics#userRef&quot;,
177 &quot;id&quot;: &quot;A String&quot;, # User ID.
178 &quot;email&quot;: &quot;A String&quot;, # Email ID of this user.
179 },
180 &quot;kind&quot;: &quot;analytics#entityUserLink&quot;, # Resource type for entity user link.
181 &quot;selfLink&quot;: &quot;A String&quot;, # Self link for this resource.
182 &quot;entity&quot;: { # Entity for this link. It can be an account, a web property, or a view (profile).
183 &quot;accountRef&quot;: { # JSON template for a linked account. # Account for this link.
184 &quot;kind&quot;: &quot;analytics#accountRef&quot;, # Analytics account reference.
185 &quot;id&quot;: &quot;A String&quot;, # Account ID.
186 &quot;name&quot;: &quot;A String&quot;, # Account name.
187 &quot;href&quot;: &quot;A String&quot;, # Link for this account.
188 },
189 &quot;profileRef&quot;: { # JSON template for a linked view (profile). # View (Profile) for this link.
190 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this view (profile) belongs.
191 &quot;id&quot;: &quot;A String&quot;, # View (Profile) ID.
192 &quot;href&quot;: &quot;A String&quot;, # Link for this view (profile).
193 &quot;name&quot;: &quot;A String&quot;, # Name of this view (profile).
194 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for the web property to which this view (profile) belongs.
195 &quot;webPropertyId&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY to which this view (profile) belongs.
196 &quot;kind&quot;: &quot;analytics#profileRef&quot;, # Analytics view (profile) reference.
197 },
198 &quot;webPropertyRef&quot;: { # JSON template for a web property reference. # Web property for this link.
199 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for this web property.
200 &quot;name&quot;: &quot;A String&quot;, # Name of this web property.
201 &quot;href&quot;: &quot;A String&quot;, # Link for this web property.
202 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this web property belongs.
203 &quot;id&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY.
204 &quot;kind&quot;: &quot;analytics#webPropertyRef&quot;, # Analytics web property reference.
205 },
206 },
207 }</pre>
John Asmuth614db982014-04-24 15:46:26 -0400208</div>
209
210<div class="method">
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800211 <code class="details" id="list">list(accountId, max_results=None, start_index=None)</code>
John Asmuth614db982014-04-24 15:46:26 -0400212 <pre>Lists account-user links for a given account.
213
214Args:
215 accountId: string, Account ID to retrieve the user links for. (required)
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700216 max_results: integer, The maximum number of account-user links to include in this response.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800217 start_index: integer, An index of the first account-user link to retrieve. Use this parameter as a pagination mechanism along with the max-results parameter.
John Asmuth614db982014-04-24 15:46:26 -0400218
219Returns:
220 An object of the form:
221
222 { # An entity user link collection provides a list of Analytics ACL links Each resource in this collection corresponds to a single link.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700223 &quot;previousLink&quot;: &quot;A String&quot;, # Previous link for this account collection.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800224 &quot;itemsPerPage&quot;: 42, # The maximum number of entries the response can contain, regardless of the actual number of entries returned. Its value ranges from 1 to 1000 with a value of 1000 by default, or otherwise specified by the max-results query parameter.
Bu Sun Kim65020912020-05-20 12:08:20 -0700225 &quot;items&quot;: [ # A list of entity user links.
John Asmuth614db982014-04-24 15:46:26 -0400226 { # JSON template for an Analytics Entity-User Link. Returns permissions that a user has for an entity.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800227 &quot;id&quot;: &quot;A String&quot;, # Entity user link ID
228 &quot;permissions&quot;: { # Permissions the user has for this entity.
229 &quot;effective&quot;: [ # Effective permissions represent all the permissions that a user has for this entity. These include any implied permissions (e.g., EDIT implies VIEW) or inherited permissions from the parent entity. Effective permissions are read-only.
230 &quot;A String&quot;,
231 ],
232 &quot;local&quot;: [ # Permissions that a user has been assigned at this very level. Does not include any implied or inherited permissions. Local permissions are modifiable.
233 &quot;A String&quot;,
234 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700235 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800236 &quot;userRef&quot;: { # JSON template for a user reference. # User reference.
237 &quot;kind&quot;: &quot;analytics#userRef&quot;,
238 &quot;id&quot;: &quot;A String&quot;, # User ID.
239 &quot;email&quot;: &quot;A String&quot;, # Email ID of this user.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700240 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800241 &quot;kind&quot;: &quot;analytics#entityUserLink&quot;, # Resource type for entity user link.
242 &quot;selfLink&quot;: &quot;A String&quot;, # Self link for this resource.
243 &quot;entity&quot;: { # Entity for this link. It can be an account, a web property, or a view (profile).
244 &quot;accountRef&quot;: { # JSON template for a linked account. # Account for this link.
245 &quot;kind&quot;: &quot;analytics#accountRef&quot;, # Analytics account reference.
246 &quot;id&quot;: &quot;A String&quot;, # Account ID.
247 &quot;name&quot;: &quot;A String&quot;, # Account name.
248 &quot;href&quot;: &quot;A String&quot;, # Link for this account.
249 },
250 &quot;profileRef&quot;: { # JSON template for a linked view (profile). # View (Profile) for this link.
251 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this view (profile) belongs.
252 &quot;id&quot;: &quot;A String&quot;, # View (Profile) ID.
253 &quot;href&quot;: &quot;A String&quot;, # Link for this view (profile).
254 &quot;name&quot;: &quot;A String&quot;, # Name of this view (profile).
255 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for the web property to which this view (profile) belongs.
256 &quot;webPropertyId&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY to which this view (profile) belongs.
257 &quot;kind&quot;: &quot;analytics#profileRef&quot;, # Analytics view (profile) reference.
258 },
259 &quot;webPropertyRef&quot;: { # JSON template for a web property reference. # Web property for this link.
260 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for this web property.
261 &quot;name&quot;: &quot;A String&quot;, # Name of this web property.
262 &quot;href&quot;: &quot;A String&quot;, # Link for this web property.
263 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this web property belongs.
264 &quot;id&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY.
265 &quot;kind&quot;: &quot;analytics#webPropertyRef&quot;, # Analytics web property reference.
266 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700267 },
John Asmuth614db982014-04-24 15:46:26 -0400268 },
269 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700270 &quot;kind&quot;: &quot;analytics#entityUserLinks&quot;, # Collection type.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800271 &quot;startIndex&quot;: 42, # The starting index of the entries, which is 1 by default or otherwise specified by the start-index query parameter.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800272 &quot;nextLink&quot;: &quot;A String&quot;, # Next link for this account collection.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800273 &quot;totalResults&quot;: 42, # The total number of results for the query, regardless of the number of results in the response.
John Asmuth614db982014-04-24 15:46:26 -0400274 }</pre>
275</div>
276
277<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700278 <code class="details" id="update">update(accountId, linkId, body=None)</code>
John Asmuth614db982014-04-24 15:46:26 -0400279 <pre>Updates permissions for an existing user on the given account.
280
281Args:
282 accountId: string, Account ID to update the account-user link for. (required)
283 linkId: string, Link ID to update the account-user link for. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700284 body: object, The request body.
John Asmuth614db982014-04-24 15:46:26 -0400285 The object takes the form of:
286
287{ # JSON template for an Analytics Entity-User Link. Returns permissions that a user has for an entity.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800288 &quot;id&quot;: &quot;A String&quot;, # Entity user link ID
289 &quot;permissions&quot;: { # Permissions the user has for this entity.
290 &quot;effective&quot;: [ # Effective permissions represent all the permissions that a user has for this entity. These include any implied permissions (e.g., EDIT implies VIEW) or inherited permissions from the parent entity. Effective permissions are read-only.
291 &quot;A String&quot;,
292 ],
293 &quot;local&quot;: [ # Permissions that a user has been assigned at this very level. Does not include any implied or inherited permissions. Local permissions are modifiable.
294 &quot;A String&quot;,
295 ],
296 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800297 &quot;userRef&quot;: { # JSON template for a user reference. # User reference.
298 &quot;kind&quot;: &quot;analytics#userRef&quot;,
299 &quot;id&quot;: &quot;A String&quot;, # User ID.
300 &quot;email&quot;: &quot;A String&quot;, # Email ID of this user.
301 },
302 &quot;kind&quot;: &quot;analytics#entityUserLink&quot;, # Resource type for entity user link.
303 &quot;selfLink&quot;: &quot;A String&quot;, # Self link for this resource.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800304 &quot;entity&quot;: { # Entity for this link. It can be an account, a web property, or a view (profile).
305 &quot;accountRef&quot;: { # JSON template for a linked account. # Account for this link.
306 &quot;kind&quot;: &quot;analytics#accountRef&quot;, # Analytics account reference.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800307 &quot;id&quot;: &quot;A String&quot;, # Account ID.
308 &quot;name&quot;: &quot;A String&quot;, # Account name.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800309 &quot;href&quot;: &quot;A String&quot;, # Link for this account.
310 },
311 &quot;profileRef&quot;: { # JSON template for a linked view (profile). # View (Profile) for this link.
312 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this view (profile) belongs.
313 &quot;id&quot;: &quot;A String&quot;, # View (Profile) ID.
314 &quot;href&quot;: &quot;A String&quot;, # Link for this view (profile).
315 &quot;name&quot;: &quot;A String&quot;, # Name of this view (profile).
316 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for the web property to which this view (profile) belongs.
317 &quot;webPropertyId&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY to which this view (profile) belongs.
318 &quot;kind&quot;: &quot;analytics#profileRef&quot;, # Analytics view (profile) reference.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700319 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800320 &quot;webPropertyRef&quot;: { # JSON template for a web property reference. # Web property for this link.
321 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for this web property.
322 &quot;name&quot;: &quot;A String&quot;, # Name of this web property.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800323 &quot;href&quot;: &quot;A String&quot;, # Link for this web property.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800324 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this web property belongs.
325 &quot;id&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY.
326 &quot;kind&quot;: &quot;analytics#webPropertyRef&quot;, # Analytics web property reference.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700327 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800328 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800329 }
330
331
332Returns:
333 An object of the form:
334
335 { # JSON template for an Analytics Entity-User Link. Returns permissions that a user has for an entity.
336 &quot;id&quot;: &quot;A String&quot;, # Entity user link ID
337 &quot;permissions&quot;: { # Permissions the user has for this entity.
338 &quot;effective&quot;: [ # Effective permissions represent all the permissions that a user has for this entity. These include any implied permissions (e.g., EDIT implies VIEW) or inherited permissions from the parent entity. Effective permissions are read-only.
339 &quot;A String&quot;,
340 ],
341 &quot;local&quot;: [ # Permissions that a user has been assigned at this very level. Does not include any implied or inherited permissions. Local permissions are modifiable.
342 &quot;A String&quot;,
343 ],
344 },
345 &quot;userRef&quot;: { # JSON template for a user reference. # User reference.
346 &quot;kind&quot;: &quot;analytics#userRef&quot;,
347 &quot;id&quot;: &quot;A String&quot;, # User ID.
348 &quot;email&quot;: &quot;A String&quot;, # Email ID of this user.
349 },
350 &quot;kind&quot;: &quot;analytics#entityUserLink&quot;, # Resource type for entity user link.
351 &quot;selfLink&quot;: &quot;A String&quot;, # Self link for this resource.
352 &quot;entity&quot;: { # Entity for this link. It can be an account, a web property, or a view (profile).
353 &quot;accountRef&quot;: { # JSON template for a linked account. # Account for this link.
354 &quot;kind&quot;: &quot;analytics#accountRef&quot;, # Analytics account reference.
355 &quot;id&quot;: &quot;A String&quot;, # Account ID.
356 &quot;name&quot;: &quot;A String&quot;, # Account name.
357 &quot;href&quot;: &quot;A String&quot;, # Link for this account.
358 },
359 &quot;profileRef&quot;: { # JSON template for a linked view (profile). # View (Profile) for this link.
360 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this view (profile) belongs.
361 &quot;id&quot;: &quot;A String&quot;, # View (Profile) ID.
362 &quot;href&quot;: &quot;A String&quot;, # Link for this view (profile).
363 &quot;name&quot;: &quot;A String&quot;, # Name of this view (profile).
364 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for the web property to which this view (profile) belongs.
365 &quot;webPropertyId&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY to which this view (profile) belongs.
366 &quot;kind&quot;: &quot;analytics#profileRef&quot;, # Analytics view (profile) reference.
367 },
368 &quot;webPropertyRef&quot;: { # JSON template for a web property reference. # Web property for this link.
369 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for this web property.
370 &quot;name&quot;: &quot;A String&quot;, # Name of this web property.
371 &quot;href&quot;: &quot;A String&quot;, # Link for this web property.
372 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this web property belongs.
373 &quot;id&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY.
374 &quot;kind&quot;: &quot;analytics#webPropertyRef&quot;, # Analytics web property reference.
375 },
376 },
377 }</pre>
John Asmuth614db982014-04-24 15:46:26 -0400378</div>
379
380</body></html>