blob: 1ace4d05c9d1d7e7380449c50c6ac22ff023e2cf [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 Botb6971b02020-11-26 17:16:03 -0800118 &quot;kind&quot;: &quot;analytics#entityUserLink&quot;, # Resource type for entity user link.
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 },
127 &quot;entity&quot;: { # Entity for this link. It can be an account, a web property, or a view (profile).
128 &quot;webPropertyRef&quot;: { # JSON template for a web property reference. # Web property for this link.
129 &quot;name&quot;: &quot;A String&quot;, # Name of this web property.
130 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this web property belongs.
131 &quot;href&quot;: &quot;A String&quot;, # Link for this web property.
132 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for this web property.
133 &quot;kind&quot;: &quot;analytics#webPropertyRef&quot;, # Analytics web property reference.
134 &quot;id&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY.
135 },
136 &quot;profileRef&quot;: { # JSON template for a linked view (profile). # View (Profile) for this link.
137 &quot;webPropertyId&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY to which this view (profile) belongs.
138 &quot;name&quot;: &quot;A String&quot;, # Name of this view (profile).
139 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this view (profile) belongs.
140 &quot;href&quot;: &quot;A String&quot;, # Link for this view (profile).
141 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for the web property to which this view (profile) belongs.
142 &quot;id&quot;: &quot;A String&quot;, # View (Profile) ID.
143 &quot;kind&quot;: &quot;analytics#profileRef&quot;, # Analytics view (profile) reference.
144 },
145 &quot;accountRef&quot;: { # JSON template for a linked account. # Account for this link.
146 &quot;id&quot;: &quot;A String&quot;, # Account ID.
147 &quot;href&quot;: &quot;A String&quot;, # Link for this account.
148 &quot;name&quot;: &quot;A String&quot;, # Account name.
149 &quot;kind&quot;: &quot;analytics#accountRef&quot;, # Analytics account reference.
150 },
151 },
152 &quot;selfLink&quot;: &quot;A String&quot;, # Self link for this resource.
153 &quot;userRef&quot;: { # JSON template for a user reference. # User reference.
154 &quot;email&quot;: &quot;A String&quot;, # Email ID of this user.
155 &quot;kind&quot;: &quot;analytics#userRef&quot;,
156 &quot;id&quot;: &quot;A String&quot;, # User ID.
157 },
158 &quot;id&quot;: &quot;A String&quot;, # Entity user link ID
159}
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;kind&quot;: &quot;analytics#entityUserLink&quot;, # Resource type for entity user link.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800167 &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;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 -0800176 &quot;webPropertyRef&quot;: { # JSON template for a web property reference. # Web property for this link.
177 &quot;name&quot;: &quot;A String&quot;, # Name of this web property.
178 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this web property belongs.
179 &quot;href&quot;: &quot;A String&quot;, # Link for this web property.
180 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for this web property.
181 &quot;kind&quot;: &quot;analytics#webPropertyRef&quot;, # Analytics web property reference.
182 &quot;id&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800183 },
184 &quot;profileRef&quot;: { # JSON template for a linked view (profile). # View (Profile) for this link.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800185 &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 -0800186 &quot;name&quot;: &quot;A String&quot;, # Name of this view (profile).
187 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this view (profile) belongs.
188 &quot;href&quot;: &quot;A String&quot;, # Link for this view (profile).
189 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for the web property to which this view (profile) belongs.
190 &quot;id&quot;: &quot;A String&quot;, # View (Profile) ID.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800191 &quot;kind&quot;: &quot;analytics#profileRef&quot;, # Analytics view (profile) reference.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700192 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800193 &quot;accountRef&quot;: { # JSON template for a linked account. # Account for this link.
194 &quot;id&quot;: &quot;A String&quot;, # Account ID.
195 &quot;href&quot;: &quot;A String&quot;, # Link for this account.
196 &quot;name&quot;: &quot;A String&quot;, # Account name.
197 &quot;kind&quot;: &quot;analytics#accountRef&quot;, # Analytics account reference.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700198 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800199 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800200 &quot;selfLink&quot;: &quot;A String&quot;, # Self link for this resource.
201 &quot;userRef&quot;: { # JSON template for a user reference. # User reference.
202 &quot;email&quot;: &quot;A String&quot;, # Email ID of this user.
203 &quot;kind&quot;: &quot;analytics#userRef&quot;,
204 &quot;id&quot;: &quot;A String&quot;, # User ID.
205 },
206 &quot;id&quot;: &quot;A String&quot;, # Entity user link ID
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.
Bu Sun Kim65020912020-05-20 12:08:20 -0700224 &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.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800226 &quot;kind&quot;: &quot;analytics#entityUserLink&quot;, # Resource type for entity user link.
227 &quot;permissions&quot;: { # Permissions the user has for this entity.
228 &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.
229 &quot;A String&quot;,
230 ],
231 &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.
232 &quot;A String&quot;,
233 ],
234 },
235 &quot;entity&quot;: { # Entity for this link. It can be an account, a web property, or a view (profile).
236 &quot;webPropertyRef&quot;: { # JSON template for a web property reference. # Web property for this link.
237 &quot;name&quot;: &quot;A String&quot;, # Name of this web property.
238 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this web property belongs.
239 &quot;href&quot;: &quot;A String&quot;, # Link for this web property.
240 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for this web property.
241 &quot;kind&quot;: &quot;analytics#webPropertyRef&quot;, # Analytics web property reference.
242 &quot;id&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700243 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800244 &quot;profileRef&quot;: { # JSON template for a linked view (profile). # View (Profile) for this link.
245 &quot;webPropertyId&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY to which this view (profile) belongs.
246 &quot;name&quot;: &quot;A String&quot;, # Name of this view (profile).
247 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this view (profile) belongs.
248 &quot;href&quot;: &quot;A String&quot;, # Link for this view (profile).
249 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for the web property to which this view (profile) belongs.
250 &quot;id&quot;: &quot;A String&quot;, # View (Profile) ID.
251 &quot;kind&quot;: &quot;analytics#profileRef&quot;, # Analytics view (profile) reference.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700252 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800253 &quot;accountRef&quot;: { # JSON template for a linked account. # Account for this link.
254 &quot;id&quot;: &quot;A String&quot;, # Account ID.
255 &quot;href&quot;: &quot;A String&quot;, # Link for this account.
256 &quot;name&quot;: &quot;A String&quot;, # Account name.
257 &quot;kind&quot;: &quot;analytics#accountRef&quot;, # Analytics account reference.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700258 },
John Asmuth614db982014-04-24 15:46:26 -0400259 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800260 &quot;selfLink&quot;: &quot;A String&quot;, # Self link for this resource.
261 &quot;userRef&quot;: { # JSON template for a user reference. # User reference.
262 &quot;email&quot;: &quot;A String&quot;, # Email ID of this user.
263 &quot;kind&quot;: &quot;analytics#userRef&quot;,
264 &quot;id&quot;: &quot;A String&quot;, # User ID.
265 },
266 &quot;id&quot;: &quot;A String&quot;, # Entity user link ID
267 },
John Asmuth614db982014-04-24 15:46:26 -0400268 ],
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800269 &quot;nextLink&quot;: &quot;A String&quot;, # Next link for this account collection.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800270 &quot;kind&quot;: &quot;analytics#entityUserLinks&quot;, # Collection type.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800271 &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 -0800272 &quot;startIndex&quot;: 42, # The starting index of the entries, which is 1 by default or otherwise specified by the start-index query parameter.
273 &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 -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 Botb6971b02020-11-26 17:16:03 -0800288 &quot;kind&quot;: &quot;analytics#entityUserLink&quot;, # Resource type for entity user link.
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 },
297 &quot;entity&quot;: { # Entity for this link. It can be an account, a web property, or a view (profile).
298 &quot;webPropertyRef&quot;: { # JSON template for a web property reference. # Web property for this link.
299 &quot;name&quot;: &quot;A String&quot;, # Name of this web property.
300 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this web property belongs.
301 &quot;href&quot;: &quot;A String&quot;, # Link for this web property.
302 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for this web property.
303 &quot;kind&quot;: &quot;analytics#webPropertyRef&quot;, # Analytics web property reference.
304 &quot;id&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY.
305 },
306 &quot;profileRef&quot;: { # JSON template for a linked view (profile). # View (Profile) for this link.
307 &quot;webPropertyId&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY to which this view (profile) belongs.
308 &quot;name&quot;: &quot;A String&quot;, # Name of this view (profile).
309 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this view (profile) belongs.
310 &quot;href&quot;: &quot;A String&quot;, # Link for this view (profile).
311 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for the web property to which this view (profile) belongs.
312 &quot;id&quot;: &quot;A String&quot;, # View (Profile) ID.
313 &quot;kind&quot;: &quot;analytics#profileRef&quot;, # Analytics view (profile) reference.
314 },
315 &quot;accountRef&quot;: { # JSON template for a linked account. # Account for this link.
316 &quot;id&quot;: &quot;A String&quot;, # Account ID.
317 &quot;href&quot;: &quot;A String&quot;, # Link for this account.
318 &quot;name&quot;: &quot;A String&quot;, # Account name.
319 &quot;kind&quot;: &quot;analytics#accountRef&quot;, # Analytics account reference.
320 },
321 },
322 &quot;selfLink&quot;: &quot;A String&quot;, # Self link for this resource.
323 &quot;userRef&quot;: { # JSON template for a user reference. # User reference.
324 &quot;email&quot;: &quot;A String&quot;, # Email ID of this user.
325 &quot;kind&quot;: &quot;analytics#userRef&quot;,
326 &quot;id&quot;: &quot;A String&quot;, # User ID.
327 },
328 &quot;id&quot;: &quot;A String&quot;, # Entity user link ID
329}
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;kind&quot;: &quot;analytics#entityUserLink&quot;, # Resource type for entity user link.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800337 &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;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 -0800346 &quot;webPropertyRef&quot;: { # JSON template for a web property reference. # Web property for this link.
347 &quot;name&quot;: &quot;A String&quot;, # Name of this web property.
348 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this web property belongs.
349 &quot;href&quot;: &quot;A String&quot;, # Link for this web property.
350 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for this web property.
351 &quot;kind&quot;: &quot;analytics#webPropertyRef&quot;, # Analytics web property reference.
352 &quot;id&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800353 },
354 &quot;profileRef&quot;: { # JSON template for a linked view (profile). # View (Profile) for this link.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800355 &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 -0800356 &quot;name&quot;: &quot;A String&quot;, # Name of this view (profile).
357 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this view (profile) belongs.
358 &quot;href&quot;: &quot;A String&quot;, # Link for this view (profile).
359 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for the web property to which this view (profile) belongs.
360 &quot;id&quot;: &quot;A String&quot;, # View (Profile) ID.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800361 &quot;kind&quot;: &quot;analytics#profileRef&quot;, # Analytics view (profile) reference.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700362 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800363 &quot;accountRef&quot;: { # JSON template for a linked account. # Account for this link.
364 &quot;id&quot;: &quot;A String&quot;, # Account ID.
365 &quot;href&quot;: &quot;A String&quot;, # Link for this account.
366 &quot;name&quot;: &quot;A String&quot;, # Account name.
367 &quot;kind&quot;: &quot;analytics#accountRef&quot;, # Analytics account reference.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700368 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800369 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800370 &quot;selfLink&quot;: &quot;A String&quot;, # Self link for this resource.
371 &quot;userRef&quot;: { # JSON template for a user reference. # User reference.
372 &quot;email&quot;: &quot;A String&quot;, # Email ID of this user.
373 &quot;kind&quot;: &quot;analytics#userRef&quot;,
374 &quot;id&quot;: &quot;A String&quot;, # User ID.
375 },
376 &quot;id&quot;: &quot;A String&quot;, # Entity user link ID
377 }</pre>
John Asmuth614db982014-04-24 15:46:26 -0400378</div>
379
380</body></html>