blob: 1a15fe4da3790e036ded09554d56ef92ab7fe90a [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.webpropertyUserLinks.html">webpropertyUserLinks</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, webPropertyId, linkId)</a></code></p>
82<p class="firstline">Removes a user from the given web property.</p>
83<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070084 <code><a href="#insert">insert(accountId, webPropertyId, body=None)</a></code></p>
John Asmuth614db982014-04-24 15:46:26 -040085<p class="firstline">Adds a new user to the given web property.</p>
86<p class="toc_element">
Yoshi Automation Botc2228be2020-11-24 15:48:03 -080087 <code><a href="#list">list(accountId, webPropertyId, max_results=None, start_index=None)</a></code></p>
John Asmuth614db982014-04-24 15:46:26 -040088<p class="firstline">Lists webProperty-user links for a given web property.</p>
89<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070090 <code><a href="#update">update(accountId, webPropertyId, 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 web property.</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, webPropertyId, linkId)</code>
100 <pre>Removes a user from the given web property.
101
102Args:
103 accountId: string, Account ID to delete the user link for. (required)
104 webPropertyId: string, Web Property ID to delete the user link for. (required)
105 linkId: string, Link ID to delete the user link for. (required)
106</pre>
107</div>
108
109<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700110 <code class="details" id="insert">insert(accountId, webPropertyId, body=None)</code>
John Asmuth614db982014-04-24 15:46:26 -0400111 <pre>Adds a new user to the given web property.
112
113Args:
114 accountId: string, Account ID to create the user link for. (required)
115 webPropertyId: string, Web Property ID to create the user link for. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700116 body: object, The request body.
John Asmuth614db982014-04-24 15:46:26 -0400117 The object takes the form of:
118
119{ # 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 -0800120 &quot;id&quot;: &quot;A String&quot;, # Entity user link ID
121 &quot;permissions&quot;: { # Permissions the user has for this entity.
122 &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.
123 &quot;A String&quot;,
124 ],
125 &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.
126 &quot;A String&quot;,
127 ],
128 },
129 &quot;entity&quot;: { # Entity for this link. It can be an account, a web property, or a view (profile).
130 &quot;accountRef&quot;: { # JSON template for a linked account. # Account for this link.
131 &quot;kind&quot;: &quot;analytics#accountRef&quot;, # Analytics account reference.
132 &quot;href&quot;: &quot;A String&quot;, # Link for this account.
133 &quot;id&quot;: &quot;A String&quot;, # Account ID.
134 &quot;name&quot;: &quot;A String&quot;, # Account name.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700135 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800136 &quot;webPropertyRef&quot;: { # JSON template for a web property reference. # Web property for this link.
137 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for this web property.
138 &quot;name&quot;: &quot;A String&quot;, # Name of this web property.
139 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this web property belongs.
140 &quot;kind&quot;: &quot;analytics#webPropertyRef&quot;, # Analytics web property reference.
141 &quot;id&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY.
142 &quot;href&quot;: &quot;A String&quot;, # Link for this web property.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700143 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800144 &quot;profileRef&quot;: { # JSON template for a linked view (profile). # View (Profile) for this link.
145 &quot;href&quot;: &quot;A String&quot;, # Link for 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;id&quot;: &quot;A String&quot;, # View (Profile) ID.
148 &quot;name&quot;: &quot;A String&quot;, # Name of this view (profile).
149 &quot;webPropertyId&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY to which this view (profile) belongs.
150 &quot;kind&quot;: &quot;analytics#profileRef&quot;, # Analytics view (profile) reference.
151 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this view (profile) belongs.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700152 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800153 },
154 &quot;kind&quot;: &quot;analytics#entityUserLink&quot;, # Resource type for entity user link.
155 &quot;userRef&quot;: { # JSON template for a user reference. # User reference.
156 &quot;email&quot;: &quot;A String&quot;, # Email ID of this user.
157 &quot;id&quot;: &quot;A String&quot;, # User ID.
158 &quot;kind&quot;: &quot;analytics#userRef&quot;,
159 },
160 &quot;selfLink&quot;: &quot;A String&quot;, # Self link for this resource.
161}
John Asmuth614db982014-04-24 15:46:26 -0400162
163
164Returns:
165 An object of the form:
166
167 { # 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 -0800168 &quot;id&quot;: &quot;A String&quot;, # Entity user link ID
169 &quot;permissions&quot;: { # Permissions the user has for this entity.
170 &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.
171 &quot;A String&quot;,
172 ],
173 &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.
174 &quot;A String&quot;,
175 ],
176 },
177 &quot;entity&quot;: { # Entity for this link. It can be an account, a web property, or a view (profile).
178 &quot;accountRef&quot;: { # JSON template for a linked account. # Account for this link.
179 &quot;kind&quot;: &quot;analytics#accountRef&quot;, # Analytics account reference.
180 &quot;href&quot;: &quot;A String&quot;, # Link for this account.
181 &quot;id&quot;: &quot;A String&quot;, # Account ID.
182 &quot;name&quot;: &quot;A String&quot;, # Account name.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700183 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800184 &quot;webPropertyRef&quot;: { # JSON template for a web property reference. # Web property for this link.
185 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for this web property.
186 &quot;name&quot;: &quot;A String&quot;, # Name of this web property.
187 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this web property belongs.
188 &quot;kind&quot;: &quot;analytics#webPropertyRef&quot;, # Analytics web property reference.
189 &quot;id&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY.
190 &quot;href&quot;: &quot;A String&quot;, # Link for this web property.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700191 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800192 &quot;profileRef&quot;: { # JSON template for a linked view (profile). # View (Profile) for this link.
193 &quot;href&quot;: &quot;A String&quot;, # Link for 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;id&quot;: &quot;A String&quot;, # View (Profile) ID.
196 &quot;name&quot;: &quot;A String&quot;, # Name of this view (profile).
197 &quot;webPropertyId&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY to which this view (profile) belongs.
198 &quot;kind&quot;: &quot;analytics#profileRef&quot;, # Analytics view (profile) reference.
199 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this view (profile) belongs.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700200 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800201 },
202 &quot;kind&quot;: &quot;analytics#entityUserLink&quot;, # Resource type for entity user link.
203 &quot;userRef&quot;: { # JSON template for a user reference. # User reference.
204 &quot;email&quot;: &quot;A String&quot;, # Email ID of this user.
205 &quot;id&quot;: &quot;A String&quot;, # User ID.
206 &quot;kind&quot;: &quot;analytics#userRef&quot;,
207 },
208 &quot;selfLink&quot;: &quot;A String&quot;, # Self link for this resource.
209 }</pre>
John Asmuth614db982014-04-24 15:46:26 -0400210</div>
211
212<div class="method">
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800213 <code class="details" id="list">list(accountId, webPropertyId, max_results=None, start_index=None)</code>
John Asmuth614db982014-04-24 15:46:26 -0400214 <pre>Lists webProperty-user links for a given web property.
215
216Args:
217 accountId: string, Account ID which the given web property belongs to. (required)
Bu Sun Kim65020912020-05-20 12:08:20 -0700218 webPropertyId: string, Web Property ID for the webProperty-user links to retrieve. Can either be a specific web property ID or &#x27;~all&#x27;, which refers to all the web properties that user has access to. (required)
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700219 max_results: integer, The maximum number of webProperty-user Links to include in this response.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800220 start_index: integer, An index of the first webProperty-user link to retrieve. Use this parameter as a pagination mechanism along with the max-results parameter.
John Asmuth614db982014-04-24 15:46:26 -0400221
222Returns:
223 An object of the form:
224
225 { # 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 -0700226 &quot;previousLink&quot;: &quot;A String&quot;, # Previous link for this account collection.
Bu Sun Kim65020912020-05-20 12:08:20 -0700227 &quot;items&quot;: [ # A list of entity user links.
John Asmuth614db982014-04-24 15:46:26 -0400228 { # 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 -0800229 &quot;id&quot;: &quot;A String&quot;, # Entity user link ID
230 &quot;permissions&quot;: { # Permissions the user has for this entity.
231 &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.
232 &quot;A String&quot;,
233 ],
234 &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.
235 &quot;A String&quot;,
236 ],
237 },
238 &quot;entity&quot;: { # Entity for this link. It can be an account, a web property, or a view (profile).
239 &quot;accountRef&quot;: { # JSON template for a linked account. # Account for this link.
240 &quot;kind&quot;: &quot;analytics#accountRef&quot;, # Analytics account reference.
241 &quot;href&quot;: &quot;A String&quot;, # Link for this account.
242 &quot;id&quot;: &quot;A String&quot;, # Account ID.
243 &quot;name&quot;: &quot;A String&quot;, # Account name.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700244 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800245 &quot;webPropertyRef&quot;: { # JSON template for a web property reference. # Web property for this link.
246 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for this web property.
247 &quot;name&quot;: &quot;A String&quot;, # Name of this web property.
248 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this web property belongs.
249 &quot;kind&quot;: &quot;analytics#webPropertyRef&quot;, # Analytics web property reference.
250 &quot;id&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY.
251 &quot;href&quot;: &quot;A String&quot;, # Link for this web property.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700252 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800253 &quot;profileRef&quot;: { # JSON template for a linked view (profile). # View (Profile) for this link.
254 &quot;href&quot;: &quot;A String&quot;, # Link for 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;id&quot;: &quot;A String&quot;, # View (Profile) ID.
257 &quot;name&quot;: &quot;A String&quot;, # Name of this view (profile).
258 &quot;webPropertyId&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY to which this view (profile) belongs.
259 &quot;kind&quot;: &quot;analytics#profileRef&quot;, # Analytics view (profile) reference.
260 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this view (profile) belongs.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700261 },
John Asmuth614db982014-04-24 15:46:26 -0400262 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800263 &quot;kind&quot;: &quot;analytics#entityUserLink&quot;, # Resource type for entity user link.
264 &quot;userRef&quot;: { # JSON template for a user reference. # User reference.
265 &quot;email&quot;: &quot;A String&quot;, # Email ID of this user.
266 &quot;id&quot;: &quot;A String&quot;, # User ID.
267 &quot;kind&quot;: &quot;analytics#userRef&quot;,
268 },
269 &quot;selfLink&quot;: &quot;A String&quot;, # Self link for this resource.
270 },
John Asmuth614db982014-04-24 15:46:26 -0400271 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700272 &quot;startIndex&quot;: 42, # The starting index of the entries, which is 1 by default or otherwise specified by the start-index query parameter.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700273 &quot;kind&quot;: &quot;analytics#entityUserLinks&quot;, # Collection type.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800274 &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.
275 &quot;totalResults&quot;: 42, # The total number of results for the query, regardless of the number of results in the response.
276 &quot;nextLink&quot;: &quot;A String&quot;, # Next link for this account collection.
John Asmuth614db982014-04-24 15:46:26 -0400277 }</pre>
278</div>
279
280<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700281 <code class="details" id="update">update(accountId, webPropertyId, linkId, body=None)</code>
John Asmuth614db982014-04-24 15:46:26 -0400282 <pre>Updates permissions for an existing user on the given web property.
283
284Args:
285 accountId: string, Account ID to update the account-user link for. (required)
286 webPropertyId: string, Web property ID to update the account-user link for. (required)
287 linkId: string, Link ID to update the account-user link for. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700288 body: object, The request body.
John Asmuth614db982014-04-24 15:46:26 -0400289 The object takes the form of:
290
291{ # 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 -0800292 &quot;id&quot;: &quot;A String&quot;, # Entity user link ID
293 &quot;permissions&quot;: { # Permissions the user has for this entity.
294 &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.
295 &quot;A String&quot;,
296 ],
297 &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.
298 &quot;A String&quot;,
299 ],
300 },
301 &quot;entity&quot;: { # Entity for this link. It can be an account, a web property, or a view (profile).
302 &quot;accountRef&quot;: { # JSON template for a linked account. # Account for this link.
303 &quot;kind&quot;: &quot;analytics#accountRef&quot;, # Analytics account reference.
304 &quot;href&quot;: &quot;A String&quot;, # Link for this account.
305 &quot;id&quot;: &quot;A String&quot;, # Account ID.
306 &quot;name&quot;: &quot;A String&quot;, # Account name.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700307 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800308 &quot;webPropertyRef&quot;: { # JSON template for a web property reference. # Web property for this link.
309 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for this web property.
310 &quot;name&quot;: &quot;A String&quot;, # Name of this web property.
311 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this web property belongs.
312 &quot;kind&quot;: &quot;analytics#webPropertyRef&quot;, # Analytics web property reference.
313 &quot;id&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY.
314 &quot;href&quot;: &quot;A String&quot;, # Link for this web property.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700315 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800316 &quot;profileRef&quot;: { # JSON template for a linked view (profile). # View (Profile) for this link.
317 &quot;href&quot;: &quot;A String&quot;, # Link for this view (profile).
318 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for the web property to which this view (profile) belongs.
319 &quot;id&quot;: &quot;A String&quot;, # View (Profile) ID.
320 &quot;name&quot;: &quot;A String&quot;, # Name of this view (profile).
321 &quot;webPropertyId&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY to which this view (profile) belongs.
322 &quot;kind&quot;: &quot;analytics#profileRef&quot;, # Analytics view (profile) reference.
323 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this view (profile) belongs.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700324 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800325 },
326 &quot;kind&quot;: &quot;analytics#entityUserLink&quot;, # Resource type for entity user link.
327 &quot;userRef&quot;: { # JSON template for a user reference. # User reference.
328 &quot;email&quot;: &quot;A String&quot;, # Email ID of this user.
329 &quot;id&quot;: &quot;A String&quot;, # User ID.
330 &quot;kind&quot;: &quot;analytics#userRef&quot;,
331 },
332 &quot;selfLink&quot;: &quot;A String&quot;, # Self link for this resource.
333}
John Asmuth614db982014-04-24 15:46:26 -0400334
335
336Returns:
337 An object of the form:
338
339 { # 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 -0800340 &quot;id&quot;: &quot;A String&quot;, # Entity user link ID
341 &quot;permissions&quot;: { # Permissions the user has for this entity.
342 &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.
343 &quot;A String&quot;,
344 ],
345 &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.
346 &quot;A String&quot;,
347 ],
348 },
349 &quot;entity&quot;: { # Entity for this link. It can be an account, a web property, or a view (profile).
350 &quot;accountRef&quot;: { # JSON template for a linked account. # Account for this link.
351 &quot;kind&quot;: &quot;analytics#accountRef&quot;, # Analytics account reference.
352 &quot;href&quot;: &quot;A String&quot;, # Link for this account.
353 &quot;id&quot;: &quot;A String&quot;, # Account ID.
354 &quot;name&quot;: &quot;A String&quot;, # Account name.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700355 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800356 &quot;webPropertyRef&quot;: { # JSON template for a web property reference. # Web property for this link.
357 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for this web property.
358 &quot;name&quot;: &quot;A String&quot;, # Name of this web property.
359 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this web property belongs.
360 &quot;kind&quot;: &quot;analytics#webPropertyRef&quot;, # Analytics web property reference.
361 &quot;id&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY.
362 &quot;href&quot;: &quot;A String&quot;, # Link for this web property.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700363 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800364 &quot;profileRef&quot;: { # JSON template for a linked view (profile). # View (Profile) for this link.
365 &quot;href&quot;: &quot;A String&quot;, # Link for this view (profile).
366 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for the web property to which this view (profile) belongs.
367 &quot;id&quot;: &quot;A String&quot;, # View (Profile) ID.
368 &quot;name&quot;: &quot;A String&quot;, # Name of this view (profile).
369 &quot;webPropertyId&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY to which this view (profile) belongs.
370 &quot;kind&quot;: &quot;analytics#profileRef&quot;, # Analytics view (profile) reference.
371 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this view (profile) belongs.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700372 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800373 },
374 &quot;kind&quot;: &quot;analytics#entityUserLink&quot;, # Resource type for entity user link.
375 &quot;userRef&quot;: { # JSON template for a user reference. # User reference.
376 &quot;email&quot;: &quot;A String&quot;, # Email ID of this user.
377 &quot;id&quot;: &quot;A String&quot;, # User ID.
378 &quot;kind&quot;: &quot;analytics#userRef&quot;,
379 },
380 &quot;selfLink&quot;: &quot;A String&quot;, # Self link for this resource.
381 }</pre>
John Asmuth614db982014-04-24 15:46:26 -0400382</div>
383
384</body></html>