blob: 4bc2c8ca0f1f7c5f6973050e098b3827f6cd63ff [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.profileUserLinks.html">profileUserLinks</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, profileId, linkId)</a></code></p>
82<p class="firstline">Removes a user from the given view (profile).</p>
83<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070084 <code><a href="#insert">insert(accountId, webPropertyId, profileId, body=None)</a></code></p>
John Asmuth614db982014-04-24 15:46:26 -040085<p class="firstline">Adds a new user to the given view (profile).</p>
86<p class="toc_element">
Yoshi Automation Botb6971b02020-11-26 17:16:03 -080087 <code><a href="#list">list(accountId, webPropertyId, profileId, start_index=None, max_results=None)</a></code></p>
John Asmuth614db982014-04-24 15:46:26 -040088<p class="firstline">Lists profile-user links for a given view (profile).</p>
89<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070090 <code><a href="#update">update(accountId, webPropertyId, profileId, 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 view (profile).</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, profileId, linkId)</code>
100 <pre>Removes a user from the given view (profile).
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 profileId: string, View (Profile) ID to delete the user link for. (required)
106 linkId: string, Link ID to delete the user link for. (required)
107</pre>
108</div>
109
110<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700111 <code class="details" id="insert">insert(accountId, webPropertyId, profileId, body=None)</code>
John Asmuth614db982014-04-24 15:46:26 -0400112 <pre>Adds a new user to the given view (profile).
113
114Args:
115 accountId: string, Account ID to create the user link for. (required)
116 webPropertyId: string, Web Property ID to create the user link for. (required)
117 profileId: string, View (Profile) ID to create the user link for. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700118 body: object, The request body.
John Asmuth614db982014-04-24 15:46:26 -0400119 The object takes the form of:
120
121{ # JSON template for an Analytics Entity-User Link. Returns permissions that a user has for an entity.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800122 &quot;kind&quot;: &quot;analytics#entityUserLink&quot;, # Resource type for entity user link.
123 &quot;permissions&quot;: { # Permissions the user has for this entity.
124 &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.
125 &quot;A String&quot;,
126 ],
127 &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.
128 &quot;A String&quot;,
129 ],
130 },
131 &quot;entity&quot;: { # Entity for this link. It can be an account, a web property, or a view (profile).
132 &quot;webPropertyRef&quot;: { # JSON template for a web property reference. # Web property for this link.
133 &quot;name&quot;: &quot;A String&quot;, # Name of this web property.
134 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this web property belongs.
135 &quot;href&quot;: &quot;A String&quot;, # Link for this web property.
136 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for this web property.
137 &quot;kind&quot;: &quot;analytics#webPropertyRef&quot;, # Analytics web property reference.
138 &quot;id&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY.
139 },
140 &quot;profileRef&quot;: { # JSON template for a linked view (profile). # View (Profile) for this link.
141 &quot;webPropertyId&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY to which this view (profile) belongs.
142 &quot;name&quot;: &quot;A String&quot;, # Name of this view (profile).
143 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this view (profile) belongs.
144 &quot;href&quot;: &quot;A String&quot;, # Link for this view (profile).
145 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for the web property to which this view (profile) belongs.
146 &quot;id&quot;: &quot;A String&quot;, # View (Profile) ID.
147 &quot;kind&quot;: &quot;analytics#profileRef&quot;, # Analytics view (profile) reference.
148 },
149 &quot;accountRef&quot;: { # JSON template for a linked account. # Account for this link.
150 &quot;id&quot;: &quot;A String&quot;, # Account ID.
151 &quot;href&quot;: &quot;A String&quot;, # Link for this account.
152 &quot;name&quot;: &quot;A String&quot;, # Account name.
153 &quot;kind&quot;: &quot;analytics#accountRef&quot;, # Analytics account reference.
154 },
155 },
156 &quot;selfLink&quot;: &quot;A String&quot;, # Self link for this resource.
157 &quot;userRef&quot;: { # JSON template for a user reference. # User reference.
158 &quot;email&quot;: &quot;A String&quot;, # Email ID of this user.
159 &quot;kind&quot;: &quot;analytics#userRef&quot;,
160 &quot;id&quot;: &quot;A String&quot;, # User ID.
161 },
162 &quot;id&quot;: &quot;A String&quot;, # Entity user link ID
163}
164
165
166Returns:
167 An object of the form:
168
169 { # JSON template for an Analytics Entity-User Link. Returns permissions that a user has for an entity.
170 &quot;kind&quot;: &quot;analytics#entityUserLink&quot;, # Resource type for entity user link.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800171 &quot;permissions&quot;: { # Permissions the user has for this entity.
172 &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.
173 &quot;A String&quot;,
174 ],
175 &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.
176 &quot;A String&quot;,
177 ],
178 },
179 &quot;entity&quot;: { # Entity for this link. It can be an account, a web property, or a view (profile).
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800180 &quot;webPropertyRef&quot;: { # JSON template for a web property reference. # Web property for this link.
181 &quot;name&quot;: &quot;A String&quot;, # Name of this web property.
182 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this web property belongs.
183 &quot;href&quot;: &quot;A String&quot;, # Link for this web property.
184 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for this web property.
185 &quot;kind&quot;: &quot;analytics#webPropertyRef&quot;, # Analytics web property reference.
186 &quot;id&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800187 },
188 &quot;profileRef&quot;: { # JSON template for a linked view (profile). # View (Profile) for this link.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800189 &quot;webPropertyId&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY to which this view (profile) belongs.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800190 &quot;name&quot;: &quot;A String&quot;, # Name of this view (profile).
191 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this view (profile) belongs.
192 &quot;href&quot;: &quot;A String&quot;, # Link for this view (profile).
193 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for the web property to which this view (profile) belongs.
194 &quot;id&quot;: &quot;A String&quot;, # View (Profile) ID.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800195 &quot;kind&quot;: &quot;analytics#profileRef&quot;, # Analytics view (profile) reference.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700196 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800197 &quot;accountRef&quot;: { # JSON template for a linked account. # Account for this link.
198 &quot;id&quot;: &quot;A String&quot;, # Account ID.
199 &quot;href&quot;: &quot;A String&quot;, # Link for this account.
200 &quot;name&quot;: &quot;A String&quot;, # Account name.
201 &quot;kind&quot;: &quot;analytics#accountRef&quot;, # Analytics account reference.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700202 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800203 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800204 &quot;selfLink&quot;: &quot;A String&quot;, # Self link for this resource.
205 &quot;userRef&quot;: { # JSON template for a user reference. # User reference.
206 &quot;email&quot;: &quot;A String&quot;, # Email ID of this user.
207 &quot;kind&quot;: &quot;analytics#userRef&quot;,
208 &quot;id&quot;: &quot;A String&quot;, # User ID.
209 },
210 &quot;id&quot;: &quot;A String&quot;, # Entity user link ID
211 }</pre>
John Asmuth614db982014-04-24 15:46:26 -0400212</div>
213
214<div class="method">
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800215 <code class="details" id="list">list(accountId, webPropertyId, profileId, start_index=None, max_results=None)</code>
John Asmuth614db982014-04-24 15:46:26 -0400216 <pre>Lists profile-user links for a given view (profile).
217
218Args:
219 accountId: string, Account ID which the given view (profile) belongs to. (required)
Bu Sun Kim65020912020-05-20 12:08:20 -0700220 webPropertyId: string, Web Property ID which the given view (profile) belongs to. 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)
221 profileId: string, View (Profile) ID to retrieve the profile-user links for. Can either be a specific profile ID or &#x27;~all&#x27;, which refers to all the profiles that user has access to. (required)
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800222 start_index: integer, An index of the first profile-user link to retrieve. Use this parameter as a pagination mechanism along with the max-results parameter.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800223 max_results: integer, The maximum number of profile-user links to include in this response.
John Asmuth614db982014-04-24 15:46:26 -0400224
225Returns:
226 An object of the form:
227
228 { # 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 -0700229 &quot;previousLink&quot;: &quot;A String&quot;, # Previous link for this account collection.
Bu Sun Kim65020912020-05-20 12:08:20 -0700230 &quot;items&quot;: [ # A list of entity user links.
John Asmuth614db982014-04-24 15:46:26 -0400231 { # JSON template for an Analytics Entity-User Link. Returns permissions that a user has for an entity.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800232 &quot;kind&quot;: &quot;analytics#entityUserLink&quot;, # Resource type for entity user link.
233 &quot;permissions&quot;: { # Permissions the user has for this entity.
234 &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.
235 &quot;A String&quot;,
236 ],
237 &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.
238 &quot;A String&quot;,
239 ],
240 },
241 &quot;entity&quot;: { # Entity for this link. It can be an account, a web property, or a view (profile).
242 &quot;webPropertyRef&quot;: { # JSON template for a web property reference. # Web property for this link.
243 &quot;name&quot;: &quot;A String&quot;, # Name of this web property.
244 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this web property belongs.
245 &quot;href&quot;: &quot;A String&quot;, # Link for this web property.
246 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for this web property.
247 &quot;kind&quot;: &quot;analytics#webPropertyRef&quot;, # Analytics web property reference.
248 &quot;id&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700249 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800250 &quot;profileRef&quot;: { # JSON template for a linked view (profile). # View (Profile) for this link.
251 &quot;webPropertyId&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY to which this view (profile) belongs.
252 &quot;name&quot;: &quot;A String&quot;, # Name of this view (profile).
253 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this view (profile) belongs.
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;kind&quot;: &quot;analytics#profileRef&quot;, # Analytics view (profile) reference.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700258 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800259 &quot;accountRef&quot;: { # JSON template for a linked account. # Account for this link.
260 &quot;id&quot;: &quot;A String&quot;, # Account ID.
261 &quot;href&quot;: &quot;A String&quot;, # Link for this account.
262 &quot;name&quot;: &quot;A String&quot;, # Account name.
263 &quot;kind&quot;: &quot;analytics#accountRef&quot;, # Analytics account reference.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700264 },
John Asmuth614db982014-04-24 15:46:26 -0400265 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800266 &quot;selfLink&quot;: &quot;A String&quot;, # Self link for this resource.
267 &quot;userRef&quot;: { # JSON template for a user reference. # User reference.
268 &quot;email&quot;: &quot;A String&quot;, # Email ID of this user.
269 &quot;kind&quot;: &quot;analytics#userRef&quot;,
270 &quot;id&quot;: &quot;A String&quot;, # User ID.
271 },
272 &quot;id&quot;: &quot;A String&quot;, # Entity user link ID
273 },
John Asmuth614db982014-04-24 15:46:26 -0400274 ],
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800275 &quot;nextLink&quot;: &quot;A String&quot;, # Next link for this account collection.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800276 &quot;kind&quot;: &quot;analytics#entityUserLinks&quot;, # Collection type.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800277 &quot;totalResults&quot;: 42, # The total number of results for the query, regardless of the number of results in the response.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800278 &quot;startIndex&quot;: 42, # The starting index of the entries, which is 1 by default or otherwise specified by the start-index query parameter.
279 &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.
John Asmuth614db982014-04-24 15:46:26 -0400280 }</pre>
281</div>
282
283<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700284 <code class="details" id="update">update(accountId, webPropertyId, profileId, linkId, body=None)</code>
John Asmuth614db982014-04-24 15:46:26 -0400285 <pre>Updates permissions for an existing user on the given view (profile).
286
287Args:
288 accountId: string, Account ID to update the user link for. (required)
289 webPropertyId: string, Web Property ID to update the user link for. (required)
290 profileId: string, View (Profile ID) to update the user link for. (required)
291 linkId: string, Link ID to update the user link for. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700292 body: object, The request body.
John Asmuth614db982014-04-24 15:46:26 -0400293 The object takes the form of:
294
295{ # JSON template for an Analytics Entity-User Link. Returns permissions that a user has for an entity.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800296 &quot;kind&quot;: &quot;analytics#entityUserLink&quot;, # Resource type for entity user link.
297 &quot;permissions&quot;: { # Permissions the user has for this entity.
298 &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.
299 &quot;A String&quot;,
300 ],
301 &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.
302 &quot;A String&quot;,
303 ],
304 },
305 &quot;entity&quot;: { # Entity for this link. It can be an account, a web property, or a view (profile).
306 &quot;webPropertyRef&quot;: { # JSON template for a web property reference. # Web property for this link.
307 &quot;name&quot;: &quot;A String&quot;, # Name of this web property.
308 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this web property belongs.
309 &quot;href&quot;: &quot;A String&quot;, # Link for this web property.
310 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for this web property.
311 &quot;kind&quot;: &quot;analytics#webPropertyRef&quot;, # Analytics web property reference.
312 &quot;id&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY.
313 },
314 &quot;profileRef&quot;: { # JSON template for a linked view (profile). # View (Profile) for this link.
315 &quot;webPropertyId&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY to which this view (profile) belongs.
316 &quot;name&quot;: &quot;A String&quot;, # Name of this view (profile).
317 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this view (profile) belongs.
318 &quot;href&quot;: &quot;A String&quot;, # Link for this view (profile).
319 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for the web property to which this view (profile) belongs.
320 &quot;id&quot;: &quot;A String&quot;, # View (Profile) ID.
321 &quot;kind&quot;: &quot;analytics#profileRef&quot;, # Analytics view (profile) reference.
322 },
323 &quot;accountRef&quot;: { # JSON template for a linked account. # Account for this link.
324 &quot;id&quot;: &quot;A String&quot;, # Account ID.
325 &quot;href&quot;: &quot;A String&quot;, # Link for this account.
326 &quot;name&quot;: &quot;A String&quot;, # Account name.
327 &quot;kind&quot;: &quot;analytics#accountRef&quot;, # Analytics account reference.
328 },
329 },
330 &quot;selfLink&quot;: &quot;A String&quot;, # Self link for this resource.
331 &quot;userRef&quot;: { # JSON template for a user reference. # User reference.
332 &quot;email&quot;: &quot;A String&quot;, # Email ID of this user.
333 &quot;kind&quot;: &quot;analytics#userRef&quot;,
334 &quot;id&quot;: &quot;A String&quot;, # User ID.
335 },
336 &quot;id&quot;: &quot;A String&quot;, # Entity user link ID
337}
338
339
340Returns:
341 An object of the form:
342
343 { # JSON template for an Analytics Entity-User Link. Returns permissions that a user has for an entity.
344 &quot;kind&quot;: &quot;analytics#entityUserLink&quot;, # Resource type for entity user link.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800345 &quot;permissions&quot;: { # Permissions the user has for this entity.
346 &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.
347 &quot;A String&quot;,
348 ],
349 &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.
350 &quot;A String&quot;,
351 ],
352 },
353 &quot;entity&quot;: { # Entity for this link. It can be an account, a web property, or a view (profile).
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800354 &quot;webPropertyRef&quot;: { # JSON template for a web property reference. # Web property for this link.
355 &quot;name&quot;: &quot;A String&quot;, # Name of this web property.
356 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this web property belongs.
357 &quot;href&quot;: &quot;A String&quot;, # Link for this web property.
358 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for this web property.
359 &quot;kind&quot;: &quot;analytics#webPropertyRef&quot;, # Analytics web property reference.
360 &quot;id&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800361 },
362 &quot;profileRef&quot;: { # JSON template for a linked view (profile). # View (Profile) for this link.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800363 &quot;webPropertyId&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY to which this view (profile) belongs.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800364 &quot;name&quot;: &quot;A String&quot;, # Name of this view (profile).
365 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this view (profile) belongs.
366 &quot;href&quot;: &quot;A String&quot;, # Link for this view (profile).
367 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for the web property to which this view (profile) belongs.
368 &quot;id&quot;: &quot;A String&quot;, # View (Profile) ID.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800369 &quot;kind&quot;: &quot;analytics#profileRef&quot;, # Analytics view (profile) reference.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700370 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800371 &quot;accountRef&quot;: { # JSON template for a linked account. # Account for this link.
372 &quot;id&quot;: &quot;A String&quot;, # Account ID.
373 &quot;href&quot;: &quot;A String&quot;, # Link for this account.
374 &quot;name&quot;: &quot;A String&quot;, # Account name.
375 &quot;kind&quot;: &quot;analytics#accountRef&quot;, # Analytics account reference.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700376 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800377 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800378 &quot;selfLink&quot;: &quot;A String&quot;, # Self link for this resource.
379 &quot;userRef&quot;: { # JSON template for a user reference. # User reference.
380 &quot;email&quot;: &quot;A String&quot;, # Email ID of this user.
381 &quot;kind&quot;: &quot;analytics#userRef&quot;,
382 &quot;id&quot;: &quot;A String&quot;, # User ID.
383 },
384 &quot;id&quot;: &quot;A String&quot;, # Entity user link ID
385 }</pre>
John Asmuth614db982014-04-24 15:46:26 -0400386</div>
387
388</body></html>