blob: 181d5c64fab8022fd09e259db8f58b878ae23d29 [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">
78 <code><a href="#delete">delete(accountId, webPropertyId, linkId)</a></code></p>
79<p class="firstline">Removes a user from the given web property.</p>
80<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070081 <code><a href="#insert">insert(accountId, webPropertyId, body=None)</a></code></p>
John Asmuth614db982014-04-24 15:46:26 -040082<p class="firstline">Adds a new user to the given web property.</p>
83<p class="toc_element">
Bu Sun Kim65020912020-05-20 12:08:20 -070084 <code><a href="#list">list(accountId, webPropertyId, start_index=None, max_results=None)</a></code></p>
John Asmuth614db982014-04-24 15:46:26 -040085<p class="firstline">Lists webProperty-user links for a given web property.</p>
86<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070087 <code><a href="#update">update(accountId, webPropertyId, linkId, body=None)</a></code></p>
John Asmuth614db982014-04-24 15:46:26 -040088<p class="firstline">Updates permissions for an existing user on the given web property.</p>
89<h3>Method Details</h3>
90<div class="method">
91 <code class="details" id="delete">delete(accountId, webPropertyId, linkId)</code>
92 <pre>Removes a user from the given web property.
93
94Args:
95 accountId: string, Account ID to delete the user link for. (required)
96 webPropertyId: string, Web Property ID to delete the user link for. (required)
97 linkId: string, Link ID to delete the user link for. (required)
98</pre>
99</div>
100
101<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700102 <code class="details" id="insert">insert(accountId, webPropertyId, body=None)</code>
John Asmuth614db982014-04-24 15:46:26 -0400103 <pre>Adds a new user to the given web property.
104
105Args:
106 accountId: string, Account ID to create the user link for. (required)
107 webPropertyId: string, Web Property ID to create the user link for. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700108 body: object, The request body.
John Asmuth614db982014-04-24 15:46:26 -0400109 The object takes the form of:
110
111{ # JSON template for an Analytics Entity-User Link. Returns permissions that a user has for an entity.
Bu Sun Kim65020912020-05-20 12:08:20 -0700112 &quot;kind&quot;: &quot;analytics#entityUserLink&quot;, # Resource type for entity user link.
113 &quot;entity&quot;: { # Entity for this link. It can be an account, a web property, or a view (profile).
114 &quot;accountRef&quot;: { # JSON template for a linked account. # Account for this link.
115 &quot;kind&quot;: &quot;analytics#accountRef&quot;, # Analytics account reference.
116 &quot;id&quot;: &quot;A String&quot;, # Account ID.
117 &quot;href&quot;: &quot;A String&quot;, # Link for this account.
118 &quot;name&quot;: &quot;A String&quot;, # Account name.
John Asmuth614db982014-04-24 15:46:26 -0400119 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700120 &quot;webPropertyRef&quot;: { # JSON template for a web property reference. # Web property for this link.
121 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this web property belongs.
122 &quot;id&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY.
123 &quot;href&quot;: &quot;A String&quot;, # Link for this web property.
124 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for this web property.
125 &quot;kind&quot;: &quot;analytics#webPropertyRef&quot;, # Analytics web property reference.
126 &quot;name&quot;: &quot;A String&quot;, # Name of this web property.
John Asmuth614db982014-04-24 15:46:26 -0400127 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700128 &quot;profileRef&quot;: { # JSON template for a linked view (profile). # View (Profile) for this link.
129 &quot;webPropertyId&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY to which this view (profile) belongs.
130 &quot;name&quot;: &quot;A String&quot;, # Name of this view (profile).
131 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this view (profile) belongs.
132 &quot;id&quot;: &quot;A String&quot;, # View (Profile) ID.
133 &quot;href&quot;: &quot;A String&quot;, # Link for this view (profile).
134 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for the web property to which this view (profile) belongs.
135 &quot;kind&quot;: &quot;analytics#profileRef&quot;, # Analytics view (profile) reference.
John Asmuth614db982014-04-24 15:46:26 -0400136 },
137 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700138 &quot;permissions&quot;: { # Permissions the user has for this entity.
139 &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.
140 &quot;A String&quot;,
John Asmuth614db982014-04-24 15:46:26 -0400141 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700142 &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.
143 &quot;A String&quot;,
John Asmuth614db982014-04-24 15:46:26 -0400144 ],
145 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700146 &quot;userRef&quot;: { # JSON template for a user reference. # User reference.
147 &quot;email&quot;: &quot;A String&quot;, # Email ID of this user.
148 &quot;kind&quot;: &quot;analytics#userRef&quot;,
149 &quot;id&quot;: &quot;A String&quot;, # User ID.
150 },
151 &quot;selfLink&quot;: &quot;A String&quot;, # Self link for this resource.
152 &quot;id&quot;: &quot;A String&quot;, # Entity user link ID
John Asmuth614db982014-04-24 15:46:26 -0400153 }
154
155
156Returns:
157 An object of the form:
158
159 { # JSON template for an Analytics Entity-User Link. Returns permissions that a user has for an entity.
Bu Sun Kim65020912020-05-20 12:08:20 -0700160 &quot;kind&quot;: &quot;analytics#entityUserLink&quot;, # Resource type for entity user link.
161 &quot;entity&quot;: { # Entity for this link. It can be an account, a web property, or a view (profile).
162 &quot;accountRef&quot;: { # JSON template for a linked account. # Account for this link.
163 &quot;kind&quot;: &quot;analytics#accountRef&quot;, # Analytics account reference.
164 &quot;id&quot;: &quot;A String&quot;, # Account ID.
165 &quot;href&quot;: &quot;A String&quot;, # Link for this account.
166 &quot;name&quot;: &quot;A String&quot;, # Account name.
John Asmuth614db982014-04-24 15:46:26 -0400167 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700168 &quot;webPropertyRef&quot;: { # JSON template for a web property reference. # Web property for this link.
169 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this web property belongs.
170 &quot;id&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY.
171 &quot;href&quot;: &quot;A String&quot;, # Link for this web property.
172 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for this web property.
173 &quot;kind&quot;: &quot;analytics#webPropertyRef&quot;, # Analytics web property reference.
174 &quot;name&quot;: &quot;A String&quot;, # Name of this web property.
John Asmuth614db982014-04-24 15:46:26 -0400175 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700176 &quot;profileRef&quot;: { # JSON template for a linked view (profile). # View (Profile) for this link.
177 &quot;webPropertyId&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY to which this view (profile) belongs.
178 &quot;name&quot;: &quot;A String&quot;, # Name of this view (profile).
179 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this view (profile) belongs.
180 &quot;id&quot;: &quot;A String&quot;, # View (Profile) ID.
181 &quot;href&quot;: &quot;A String&quot;, # Link for this view (profile).
182 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for the web property to which this view (profile) belongs.
183 &quot;kind&quot;: &quot;analytics#profileRef&quot;, # Analytics view (profile) reference.
John Asmuth614db982014-04-24 15:46:26 -0400184 },
185 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700186 &quot;permissions&quot;: { # Permissions the user has for this entity.
187 &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.
188 &quot;A String&quot;,
John Asmuth614db982014-04-24 15:46:26 -0400189 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700190 &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.
191 &quot;A String&quot;,
John Asmuth614db982014-04-24 15:46:26 -0400192 ],
193 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700194 &quot;userRef&quot;: { # JSON template for a user reference. # User reference.
195 &quot;email&quot;: &quot;A String&quot;, # Email ID of this user.
196 &quot;kind&quot;: &quot;analytics#userRef&quot;,
197 &quot;id&quot;: &quot;A String&quot;, # User ID.
198 },
199 &quot;selfLink&quot;: &quot;A String&quot;, # Self link for this resource.
200 &quot;id&quot;: &quot;A String&quot;, # Entity user link ID
John Asmuth614db982014-04-24 15:46:26 -0400201 }</pre>
202</div>
203
204<div class="method">
Bu Sun Kim65020912020-05-20 12:08:20 -0700205 <code class="details" id="list">list(accountId, webPropertyId, start_index=None, max_results=None)</code>
John Asmuth614db982014-04-24 15:46:26 -0400206 <pre>Lists webProperty-user links for a given web property.
207
208Args:
209 accountId: string, Account ID which the given web property belongs to. (required)
Bu Sun Kim65020912020-05-20 12:08:20 -0700210 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)
John Asmuth614db982014-04-24 15:46:26 -0400211 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.
Bu Sun Kim65020912020-05-20 12:08:20 -0700212 max_results: integer, The maximum number of webProperty-user Links to include in this response.
John Asmuth614db982014-04-24 15:46:26 -0400213
214Returns:
215 An object of the form:
216
217 { # An entity user link collection provides a list of Analytics ACL links Each resource in this collection corresponds to a single link.
Bu Sun Kim65020912020-05-20 12:08:20 -0700218 &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.
219 &quot;startIndex&quot;: 42, # The starting index of the entries, which is 1 by default or otherwise specified by the start-index query parameter.
220 &quot;kind&quot;: &quot;analytics#entityUserLinks&quot;, # Collection type.
221 &quot;nextLink&quot;: &quot;A String&quot;, # Next link for this account collection.
222 &quot;previousLink&quot;: &quot;A String&quot;, # Previous link for this account collection.
223 &quot;totalResults&quot;: 42, # The total number of results for the query, regardless of the number of results in the response.
224 &quot;items&quot;: [ # A list of entity user links.
John Asmuth614db982014-04-24 15:46:26 -0400225 { # JSON template for an Analytics Entity-User Link. Returns permissions that a user has for an entity.
Bu Sun Kim65020912020-05-20 12:08:20 -0700226 &quot;kind&quot;: &quot;analytics#entityUserLink&quot;, # Resource type for entity user link.
227 &quot;entity&quot;: { # Entity for this link. It can be an account, a web property, or a view (profile).
228 &quot;accountRef&quot;: { # JSON template for a linked account. # Account for this link.
229 &quot;kind&quot;: &quot;analytics#accountRef&quot;, # Analytics account reference.
230 &quot;id&quot;: &quot;A String&quot;, # Account ID.
231 &quot;href&quot;: &quot;A String&quot;, # Link for this account.
232 &quot;name&quot;: &quot;A String&quot;, # Account name.
John Asmuth614db982014-04-24 15:46:26 -0400233 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700234 &quot;webPropertyRef&quot;: { # JSON template for a web property reference. # Web property for this link.
235 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this web property belongs.
236 &quot;id&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY.
237 &quot;href&quot;: &quot;A String&quot;, # Link for this web property.
238 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for this web property.
239 &quot;kind&quot;: &quot;analytics#webPropertyRef&quot;, # Analytics web property reference.
240 &quot;name&quot;: &quot;A String&quot;, # Name of this web property.
John Asmuth614db982014-04-24 15:46:26 -0400241 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700242 &quot;profileRef&quot;: { # JSON template for a linked view (profile). # View (Profile) for this link.
243 &quot;webPropertyId&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY to which this view (profile) belongs.
244 &quot;name&quot;: &quot;A String&quot;, # Name of this view (profile).
245 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this view (profile) belongs.
246 &quot;id&quot;: &quot;A String&quot;, # View (Profile) ID.
247 &quot;href&quot;: &quot;A String&quot;, # Link for this view (profile).
248 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for the web property to which this view (profile) belongs.
249 &quot;kind&quot;: &quot;analytics#profileRef&quot;, # Analytics view (profile) reference.
John Asmuth614db982014-04-24 15:46:26 -0400250 },
251 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700252 &quot;permissions&quot;: { # Permissions the user has for this entity.
253 &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.
254 &quot;A String&quot;,
John Asmuth614db982014-04-24 15:46:26 -0400255 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700256 &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.
257 &quot;A String&quot;,
John Asmuth614db982014-04-24 15:46:26 -0400258 ],
259 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700260 &quot;userRef&quot;: { # JSON template for a user reference. # User reference.
261 &quot;email&quot;: &quot;A String&quot;, # Email ID of this user.
262 &quot;kind&quot;: &quot;analytics#userRef&quot;,
263 &quot;id&quot;: &quot;A String&quot;, # User ID.
264 },
265 &quot;selfLink&quot;: &quot;A String&quot;, # Self link for this resource.
266 &quot;id&quot;: &quot;A String&quot;, # Entity user link ID
John Asmuth614db982014-04-24 15:46:26 -0400267 },
268 ],
John Asmuth614db982014-04-24 15:46:26 -0400269 }</pre>
270</div>
271
272<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700273 <code class="details" id="update">update(accountId, webPropertyId, linkId, body=None)</code>
John Asmuth614db982014-04-24 15:46:26 -0400274 <pre>Updates permissions for an existing user on the given web property.
275
276Args:
277 accountId: string, Account ID to update the account-user link for. (required)
278 webPropertyId: string, Web property ID to update the account-user link for. (required)
279 linkId: string, Link ID to update the account-user link for. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700280 body: object, The request body.
John Asmuth614db982014-04-24 15:46:26 -0400281 The object takes the form of:
282
283{ # JSON template for an Analytics Entity-User Link. Returns permissions that a user has for an entity.
Bu Sun Kim65020912020-05-20 12:08:20 -0700284 &quot;kind&quot;: &quot;analytics#entityUserLink&quot;, # Resource type for entity user link.
285 &quot;entity&quot;: { # Entity for this link. It can be an account, a web property, or a view (profile).
286 &quot;accountRef&quot;: { # JSON template for a linked account. # Account for this link.
287 &quot;kind&quot;: &quot;analytics#accountRef&quot;, # Analytics account reference.
288 &quot;id&quot;: &quot;A String&quot;, # Account ID.
289 &quot;href&quot;: &quot;A String&quot;, # Link for this account.
290 &quot;name&quot;: &quot;A String&quot;, # Account name.
John Asmuth614db982014-04-24 15:46:26 -0400291 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700292 &quot;webPropertyRef&quot;: { # JSON template for a web property reference. # Web property for this link.
293 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this web property belongs.
294 &quot;id&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY.
295 &quot;href&quot;: &quot;A String&quot;, # Link for this web property.
296 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for this web property.
297 &quot;kind&quot;: &quot;analytics#webPropertyRef&quot;, # Analytics web property reference.
298 &quot;name&quot;: &quot;A String&quot;, # Name of this web property.
John Asmuth614db982014-04-24 15:46:26 -0400299 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700300 &quot;profileRef&quot;: { # JSON template for a linked view (profile). # View (Profile) for this link.
301 &quot;webPropertyId&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY to which this view (profile) belongs.
302 &quot;name&quot;: &quot;A String&quot;, # Name of this view (profile).
303 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this view (profile) belongs.
304 &quot;id&quot;: &quot;A String&quot;, # View (Profile) ID.
305 &quot;href&quot;: &quot;A String&quot;, # Link for this view (profile).
306 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for the web property to which this view (profile) belongs.
307 &quot;kind&quot;: &quot;analytics#profileRef&quot;, # Analytics view (profile) reference.
John Asmuth614db982014-04-24 15:46:26 -0400308 },
309 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700310 &quot;permissions&quot;: { # Permissions the user has for this entity.
311 &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.
312 &quot;A String&quot;,
John Asmuth614db982014-04-24 15:46:26 -0400313 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700314 &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.
315 &quot;A String&quot;,
John Asmuth614db982014-04-24 15:46:26 -0400316 ],
317 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700318 &quot;userRef&quot;: { # JSON template for a user reference. # User reference.
319 &quot;email&quot;: &quot;A String&quot;, # Email ID of this user.
320 &quot;kind&quot;: &quot;analytics#userRef&quot;,
321 &quot;id&quot;: &quot;A String&quot;, # User ID.
322 },
323 &quot;selfLink&quot;: &quot;A String&quot;, # Self link for this resource.
324 &quot;id&quot;: &quot;A String&quot;, # Entity user link ID
John Asmuth614db982014-04-24 15:46:26 -0400325 }
326
327
328Returns:
329 An object of the form:
330
331 { # JSON template for an Analytics Entity-User Link. Returns permissions that a user has for an entity.
Bu Sun Kim65020912020-05-20 12:08:20 -0700332 &quot;kind&quot;: &quot;analytics#entityUserLink&quot;, # Resource type for entity user link.
333 &quot;entity&quot;: { # Entity for this link. It can be an account, a web property, or a view (profile).
334 &quot;accountRef&quot;: { # JSON template for a linked account. # Account for this link.
335 &quot;kind&quot;: &quot;analytics#accountRef&quot;, # Analytics account reference.
336 &quot;id&quot;: &quot;A String&quot;, # Account ID.
337 &quot;href&quot;: &quot;A String&quot;, # Link for this account.
338 &quot;name&quot;: &quot;A String&quot;, # Account name.
John Asmuth614db982014-04-24 15:46:26 -0400339 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700340 &quot;webPropertyRef&quot;: { # JSON template for a web property reference. # Web property for this link.
341 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this web property belongs.
342 &quot;id&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY.
343 &quot;href&quot;: &quot;A String&quot;, # Link for this web property.
344 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for this web property.
345 &quot;kind&quot;: &quot;analytics#webPropertyRef&quot;, # Analytics web property reference.
346 &quot;name&quot;: &quot;A String&quot;, # Name of this web property.
John Asmuth614db982014-04-24 15:46:26 -0400347 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700348 &quot;profileRef&quot;: { # JSON template for a linked view (profile). # View (Profile) for this link.
349 &quot;webPropertyId&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY to which this view (profile) belongs.
350 &quot;name&quot;: &quot;A String&quot;, # Name of this view (profile).
351 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this view (profile) belongs.
352 &quot;id&quot;: &quot;A String&quot;, # View (Profile) ID.
353 &quot;href&quot;: &quot;A String&quot;, # Link for this view (profile).
354 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for the web property to which this view (profile) belongs.
355 &quot;kind&quot;: &quot;analytics#profileRef&quot;, # Analytics view (profile) reference.
John Asmuth614db982014-04-24 15:46:26 -0400356 },
357 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700358 &quot;permissions&quot;: { # Permissions the user has for this entity.
359 &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.
360 &quot;A String&quot;,
John Asmuth614db982014-04-24 15:46:26 -0400361 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700362 &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.
363 &quot;A String&quot;,
John Asmuth614db982014-04-24 15:46:26 -0400364 ],
365 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700366 &quot;userRef&quot;: { # JSON template for a user reference. # User reference.
367 &quot;email&quot;: &quot;A String&quot;, # Email ID of this user.
368 &quot;kind&quot;: &quot;analytics#userRef&quot;,
369 &quot;id&quot;: &quot;A String&quot;, # User ID.
370 },
371 &quot;selfLink&quot;: &quot;A String&quot;, # Self link for this resource.
372 &quot;id&quot;: &quot;A String&quot;, # Entity user link ID
John Asmuth614db982014-04-24 15:46:26 -0400373 }</pre>
374</div>
375
376</body></html>