blob: 529403817a69bfe2653c9920c13a65506b02f8aa [file] [log] [blame]
Craig Citro065b5302014-08-14 00:47:23 -07001<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.provisioning.html">provisioning</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070078 <code><a href="#createAccountTicket">createAccountTicket(body=None)</a></code></p>
Craig Citro065b5302014-08-14 00:47:23 -070079<p class="firstline">Creates an account ticket.</p>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070080<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070081 <code><a href="#createAccountTree">createAccountTree(body=None)</a></code></p>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070082<p class="firstline">Provision account.</p>
Craig Citro065b5302014-08-14 00:47:23 -070083<h3>Method Details</h3>
84<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -070085 <code class="details" id="createAccountTicket">createAccountTicket(body=None)</code>
Craig Citro065b5302014-08-14 00:47:23 -070086 <pre>Creates an account ticket.
87
88Args:
Dan O'Mearadd494642020-05-01 07:42:23 -070089 body: object, The request body.
Craig Citro065b5302014-08-14 00:47:23 -070090 The object takes the form of:
91
92{ # JSON template for an Analytics account ticket. The account ticket consists of the ticket ID and the basic information for the account, property and profile.
Bu Sun Kim65020912020-05-20 12:08:20 -070093 &quot;kind&quot;: &quot;analytics#accountTicket&quot;, # Resource type for account ticket.
94 &quot;webproperty&quot;: { # JSON template for an Analytics web property. # Web property for the account.
95 &quot;starred&quot;: True or False, # Indicates whether this web property is starred or not.
96 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for this web property.
97 &quot;kind&quot;: &quot;analytics#webproperty&quot;, # Resource type for Analytics WebProperty.
98 &quot;created&quot;: &quot;A String&quot;, # Time this web property was created.
99 &quot;dataRetentionTtl&quot;: &quot;A String&quot;, # The length of time for which user and event data is retained.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700100 # This property cannot be set on insert.
Bu Sun Kim65020912020-05-20 12:08:20 -0700101 &quot;websiteUrl&quot;: &quot;A String&quot;, # Website url for this web property.
102 &quot;name&quot;: &quot;A String&quot;, # Name of this web property.
103 &quot;parentLink&quot;: { # Parent link for this web property. Points to the account to which this web property belongs.
104 &quot;type&quot;: &quot;analytics#account&quot;, # Type of the parent link. Its value is &quot;analytics#account&quot;.
105 &quot;href&quot;: &quot;A String&quot;, # Link to the account for this web property.
Craig Citro065b5302014-08-14 00:47:23 -0700106 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700107 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this web property belongs.
108 &quot;id&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY.
109 &quot;defaultProfileId&quot;: &quot;A String&quot;, # Default view (profile) ID.
110 &quot;profileCount&quot;: 42, # View (Profile) count for this web property.
111 &quot;dataRetentionResetOnNewActivity&quot;: True or False, # Set to true to reset the retention period of the user identifier with each new event from that user (thus setting the expiration date to current time plus retention period).
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700112 # Set to false to delete data associated with the user identifier automatically after the rentention period.
113 # This property cannot be set on insert.
Bu Sun Kim65020912020-05-20 12:08:20 -0700114 &quot;level&quot;: &quot;A String&quot;, # Level for this web property. Possible values are STANDARD or PREMIUM.
115 &quot;childLink&quot;: { # Child link for this web property. Points to the list of views (profiles) for this web property.
116 &quot;type&quot;: &quot;analytics#profiles&quot;, # Type of the parent link. Its value is &quot;analytics#profiles&quot;.
117 &quot;href&quot;: &quot;A String&quot;, # Link to the list of views (profiles) for this web property.
118 },
119 &quot;permissions&quot;: { # Permissions the user has for this web property.
120 &quot;effective&quot;: [ # All the permissions that the user has for this web property. These include any implied permissions (e.g., EDIT implies VIEW) or inherited permissions from the parent account.
121 &quot;A String&quot;,
Craig Citro065b5302014-08-14 00:47:23 -0700122 ],
123 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700124 &quot;industryVertical&quot;: &quot;A String&quot;, # The industry vertical/category selected for this web property.
125 &quot;selfLink&quot;: &quot;A String&quot;, # Link for this web property.
126 &quot;updated&quot;: &quot;A String&quot;, # Time this web property was last modified.
Craig Citro065b5302014-08-14 00:47:23 -0700127 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700128 &quot;profile&quot;: { # JSON template for an Analytics view (profile). # View (Profile) for the account.
129 &quot;eCommerceTracking&quot;: True or False, # Indicates whether ecommerce tracking is enabled for this view (profile).
130 &quot;selfLink&quot;: &quot;A String&quot;, # Link for this view (profile).
131 &quot;starred&quot;: True or False, # Indicates whether this view (profile) is starred or not.
132 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for the web property to which this view (profile) belongs.
133 &quot;kind&quot;: &quot;analytics#profile&quot;, # Resource type for Analytics view (profile).
134 &quot;websiteUrl&quot;: &quot;A String&quot;, # Website URL for this view (profile).
135 &quot;timezone&quot;: &quot;A String&quot;, # Time zone for which this view (profile) has been configured. Time zones are identified by strings from the TZ database.
136 &quot;parentLink&quot;: { # Parent link for this view (profile). Points to the web property to which this view (profile) belongs.
137 &quot;href&quot;: &quot;A String&quot;, # Link to the web property to which this view (profile) belongs.
138 &quot;type&quot;: &quot;analytics#webproperty&quot;, # Value is &quot;analytics#webproperty&quot;.
139 },
140 &quot;id&quot;: &quot;A String&quot;, # View (Profile) ID.
141 &quot;currency&quot;: &quot;A String&quot;, # The currency type associated with this view (profile), defaults to USD. The supported values are:
142 # USD, JPY, EUR, GBP, AUD, KRW, BRL, CNY, DKK, RUB, SEK, NOK, PLN, TRY, TWD, HKD, THB, IDR, ARS, MXN, VND, PHP, INR, CHF, CAD, CZK, NZD, HUF, BGN, LTL, ZAR, UAH, AED, BOB, CLP, COP, EGP, HRK, ILS, MAD, MYR, PEN, PKR, RON, RSD, SAR, SGD, VEF, LVL
143 &quot;stripSiteSearchCategoryParameters&quot;: True or False, # Whether or not Analytics will strip search category parameters from the URLs in your reports.
144 &quot;permissions&quot;: { # Permissions the user has for this view (profile).
145 &quot;effective&quot;: [ # All the permissions that the user has for this view (profile). These include any implied permissions (e.g., EDIT implies VIEW) or inherited permissions from the parent web property.
146 &quot;A String&quot;,
147 ],
148 },
149 &quot;siteSearchQueryParameters&quot;: &quot;A String&quot;, # The site search query parameters for this view (profile).
150 &quot;type&quot;: &quot;A String&quot;, # View (Profile) type. Supported types: WEB or APP.
151 &quot;updated&quot;: &quot;A String&quot;, # Time this view (profile) was last modified.
152 &quot;created&quot;: &quot;A String&quot;, # Time this view (profile) was created.
153 &quot;name&quot;: &quot;A String&quot;, # Name of this view (profile).
154 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this view (profile) belongs.
155 &quot;enhancedECommerceTracking&quot;: True or False, # Indicates whether enhanced ecommerce tracking is enabled for this view (profile). This property can only be enabled if ecommerce tracking is enabled.
156 &quot;siteSearchCategoryParameters&quot;: &quot;A String&quot;, # Site search category parameters for this view (profile).
157 &quot;stripSiteSearchQueryParameters&quot;: True or False, # Whether or not Analytics will strip search query parameters from the URLs in your reports.
158 &quot;excludeQueryParameters&quot;: &quot;A String&quot;, # The query parameters that are excluded from this view (profile).
159 &quot;webPropertyId&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY to which this view (profile) belongs.
160 &quot;childLink&quot;: { # Child link for this view (profile). Points to the list of goals for this view (profile).
161 &quot;type&quot;: &quot;analytics#goals&quot;, # Value is &quot;analytics#goals&quot;.
162 &quot;href&quot;: &quot;A String&quot;, # Link to the list of goals for this view (profile).
163 },
164 &quot;defaultPage&quot;: &quot;A String&quot;, # Default page for this view (profile).
165 &quot;botFilteringEnabled&quot;: True or False, # Indicates whether bot filtering is enabled for this view (profile).
166 },
167 &quot;redirectUri&quot;: &quot;A String&quot;, # Redirect URI where the user will be sent after accepting Terms of Service. Must be configured in APIs console as a callback URL.
168 &quot;id&quot;: &quot;A String&quot;, # Account ticket ID used to access the account ticket.
169 &quot;account&quot;: { # JSON template for Analytics account entry. # Account for this ticket.
170 &quot;kind&quot;: &quot;analytics#account&quot;, # Resource type for Analytics account.
171 &quot;created&quot;: &quot;A String&quot;, # Time the account was created.
172 &quot;childLink&quot;: { # Child link for an account entry. Points to the list of web properties for this account.
173 &quot;href&quot;: &quot;A String&quot;, # Link to the list of web properties for this account.
174 &quot;type&quot;: &quot;analytics#webproperties&quot;, # Type of the child link. Its value is &quot;analytics#webproperties&quot;.
175 },
176 &quot;permissions&quot;: { # Permissions the user has for this account.
177 &quot;effective&quot;: [ # All the permissions that the user has for this account. These include any implied permissions (e.g., EDIT implies VIEW).
178 &quot;A String&quot;,
179 ],
180 },
181 &quot;name&quot;: &quot;A String&quot;, # Account name.
182 &quot;selfLink&quot;: &quot;A String&quot;, # Link for this account.
183 &quot;updated&quot;: &quot;A String&quot;, # Time the account was last modified.
184 &quot;id&quot;: &quot;A String&quot;, # Account ID.
185 &quot;starred&quot;: True or False, # Indicates whether this account is starred or not.
186 },
Craig Citro065b5302014-08-14 00:47:23 -0700187 }
188
189
190Returns:
191 An object of the form:
192
193 { # JSON template for an Analytics account ticket. The account ticket consists of the ticket ID and the basic information for the account, property and profile.
Bu Sun Kim65020912020-05-20 12:08:20 -0700194 &quot;kind&quot;: &quot;analytics#accountTicket&quot;, # Resource type for account ticket.
195 &quot;webproperty&quot;: { # JSON template for an Analytics web property. # Web property for the account.
196 &quot;starred&quot;: True or False, # Indicates whether this web property is starred or not.
197 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for this web property.
198 &quot;kind&quot;: &quot;analytics#webproperty&quot;, # Resource type for Analytics WebProperty.
199 &quot;created&quot;: &quot;A String&quot;, # Time this web property was created.
200 &quot;dataRetentionTtl&quot;: &quot;A String&quot;, # The length of time for which user and event data is retained.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700201 # This property cannot be set on insert.
Bu Sun Kim65020912020-05-20 12:08:20 -0700202 &quot;websiteUrl&quot;: &quot;A String&quot;, # Website url for this web property.
203 &quot;name&quot;: &quot;A String&quot;, # Name of this web property.
204 &quot;parentLink&quot;: { # Parent link for this web property. Points to the account to which this web property belongs.
205 &quot;type&quot;: &quot;analytics#account&quot;, # Type of the parent link. Its value is &quot;analytics#account&quot;.
206 &quot;href&quot;: &quot;A String&quot;, # Link to the account for this web property.
Craig Citro065b5302014-08-14 00:47:23 -0700207 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700208 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this web property belongs.
209 &quot;id&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY.
210 &quot;defaultProfileId&quot;: &quot;A String&quot;, # Default view (profile) ID.
211 &quot;profileCount&quot;: 42, # View (Profile) count for this web property.
212 &quot;dataRetentionResetOnNewActivity&quot;: True or False, # Set to true to reset the retention period of the user identifier with each new event from that user (thus setting the expiration date to current time plus retention period).
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700213 # Set to false to delete data associated with the user identifier automatically after the rentention period.
214 # This property cannot be set on insert.
Bu Sun Kim65020912020-05-20 12:08:20 -0700215 &quot;level&quot;: &quot;A String&quot;, # Level for this web property. Possible values are STANDARD or PREMIUM.
216 &quot;childLink&quot;: { # Child link for this web property. Points to the list of views (profiles) for this web property.
217 &quot;type&quot;: &quot;analytics#profiles&quot;, # Type of the parent link. Its value is &quot;analytics#profiles&quot;.
218 &quot;href&quot;: &quot;A String&quot;, # Link to the list of views (profiles) for this web property.
219 },
220 &quot;permissions&quot;: { # Permissions the user has for this web property.
221 &quot;effective&quot;: [ # All the permissions that the user has for this web property. These include any implied permissions (e.g., EDIT implies VIEW) or inherited permissions from the parent account.
222 &quot;A String&quot;,
Craig Citro065b5302014-08-14 00:47:23 -0700223 ],
224 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700225 &quot;industryVertical&quot;: &quot;A String&quot;, # The industry vertical/category selected for this web property.
226 &quot;selfLink&quot;: &quot;A String&quot;, # Link for this web property.
227 &quot;updated&quot;: &quot;A String&quot;, # Time this web property was last modified.
Craig Citro065b5302014-08-14 00:47:23 -0700228 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700229 &quot;profile&quot;: { # JSON template for an Analytics view (profile). # View (Profile) for the account.
230 &quot;eCommerceTracking&quot;: True or False, # Indicates whether ecommerce tracking is enabled for this view (profile).
231 &quot;selfLink&quot;: &quot;A String&quot;, # Link for this view (profile).
232 &quot;starred&quot;: True or False, # Indicates whether this view (profile) is starred or not.
233 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for the web property to which this view (profile) belongs.
234 &quot;kind&quot;: &quot;analytics#profile&quot;, # Resource type for Analytics view (profile).
235 &quot;websiteUrl&quot;: &quot;A String&quot;, # Website URL for this view (profile).
236 &quot;timezone&quot;: &quot;A String&quot;, # Time zone for which this view (profile) has been configured. Time zones are identified by strings from the TZ database.
237 &quot;parentLink&quot;: { # Parent link for this view (profile). Points to the web property to which this view (profile) belongs.
238 &quot;href&quot;: &quot;A String&quot;, # Link to the web property to which this view (profile) belongs.
239 &quot;type&quot;: &quot;analytics#webproperty&quot;, # Value is &quot;analytics#webproperty&quot;.
240 },
241 &quot;id&quot;: &quot;A String&quot;, # View (Profile) ID.
242 &quot;currency&quot;: &quot;A String&quot;, # The currency type associated with this view (profile), defaults to USD. The supported values are:
243 # USD, JPY, EUR, GBP, AUD, KRW, BRL, CNY, DKK, RUB, SEK, NOK, PLN, TRY, TWD, HKD, THB, IDR, ARS, MXN, VND, PHP, INR, CHF, CAD, CZK, NZD, HUF, BGN, LTL, ZAR, UAH, AED, BOB, CLP, COP, EGP, HRK, ILS, MAD, MYR, PEN, PKR, RON, RSD, SAR, SGD, VEF, LVL
244 &quot;stripSiteSearchCategoryParameters&quot;: True or False, # Whether or not Analytics will strip search category parameters from the URLs in your reports.
245 &quot;permissions&quot;: { # Permissions the user has for this view (profile).
246 &quot;effective&quot;: [ # All the permissions that the user has for this view (profile). These include any implied permissions (e.g., EDIT implies VIEW) or inherited permissions from the parent web property.
247 &quot;A String&quot;,
248 ],
249 },
250 &quot;siteSearchQueryParameters&quot;: &quot;A String&quot;, # The site search query parameters for this view (profile).
251 &quot;type&quot;: &quot;A String&quot;, # View (Profile) type. Supported types: WEB or APP.
252 &quot;updated&quot;: &quot;A String&quot;, # Time this view (profile) was last modified.
253 &quot;created&quot;: &quot;A String&quot;, # Time this view (profile) was created.
254 &quot;name&quot;: &quot;A String&quot;, # Name of this view (profile).
255 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this view (profile) belongs.
256 &quot;enhancedECommerceTracking&quot;: True or False, # Indicates whether enhanced ecommerce tracking is enabled for this view (profile). This property can only be enabled if ecommerce tracking is enabled.
257 &quot;siteSearchCategoryParameters&quot;: &quot;A String&quot;, # Site search category parameters for this view (profile).
258 &quot;stripSiteSearchQueryParameters&quot;: True or False, # Whether or not Analytics will strip search query parameters from the URLs in your reports.
259 &quot;excludeQueryParameters&quot;: &quot;A String&quot;, # The query parameters that are excluded from this view (profile).
260 &quot;webPropertyId&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY to which this view (profile) belongs.
261 &quot;childLink&quot;: { # Child link for this view (profile). Points to the list of goals for this view (profile).
262 &quot;type&quot;: &quot;analytics#goals&quot;, # Value is &quot;analytics#goals&quot;.
263 &quot;href&quot;: &quot;A String&quot;, # Link to the list of goals for this view (profile).
264 },
265 &quot;defaultPage&quot;: &quot;A String&quot;, # Default page for this view (profile).
266 &quot;botFilteringEnabled&quot;: True or False, # Indicates whether bot filtering is enabled for this view (profile).
267 },
268 &quot;redirectUri&quot;: &quot;A String&quot;, # Redirect URI where the user will be sent after accepting Terms of Service. Must be configured in APIs console as a callback URL.
269 &quot;id&quot;: &quot;A String&quot;, # Account ticket ID used to access the account ticket.
270 &quot;account&quot;: { # JSON template for Analytics account entry. # Account for this ticket.
271 &quot;kind&quot;: &quot;analytics#account&quot;, # Resource type for Analytics account.
272 &quot;created&quot;: &quot;A String&quot;, # Time the account was created.
273 &quot;childLink&quot;: { # Child link for an account entry. Points to the list of web properties for this account.
274 &quot;href&quot;: &quot;A String&quot;, # Link to the list of web properties for this account.
275 &quot;type&quot;: &quot;analytics#webproperties&quot;, # Type of the child link. Its value is &quot;analytics#webproperties&quot;.
276 },
277 &quot;permissions&quot;: { # Permissions the user has for this account.
278 &quot;effective&quot;: [ # All the permissions that the user has for this account. These include any implied permissions (e.g., EDIT implies VIEW).
279 &quot;A String&quot;,
280 ],
281 },
282 &quot;name&quot;: &quot;A String&quot;, # Account name.
283 &quot;selfLink&quot;: &quot;A String&quot;, # Link for this account.
284 &quot;updated&quot;: &quot;A String&quot;, # Time the account was last modified.
285 &quot;id&quot;: &quot;A String&quot;, # Account ID.
286 &quot;starred&quot;: True or False, # Indicates whether this account is starred or not.
287 },
Craig Citro065b5302014-08-14 00:47:23 -0700288 }</pre>
289</div>
290
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700291<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700292 <code class="details" id="createAccountTree">createAccountTree(body=None)</code>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700293 <pre>Provision account.
294
295Args:
Dan O'Mearadd494642020-05-01 07:42:23 -0700296 body: object, The request body.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700297 The object takes the form of:
298
299{ # JSON template for an Analytics account tree requests. The account tree request is used in the provisioning api to create an account, property, and view (profile). It contains the basic information required to make these fields.
Bu Sun Kim65020912020-05-20 12:08:20 -0700300 &quot;accountName&quot;: &quot;A String&quot;,
301 &quot;webpropertyName&quot;: &quot;A String&quot;,
302 &quot;kind&quot;: &quot;analytics#accountTreeRequest&quot;, # Resource type for account ticket.
303 &quot;profileName&quot;: &quot;A String&quot;,
304 &quot;websiteUrl&quot;: &quot;A String&quot;,
305 &quot;timezone&quot;: &quot;A String&quot;,
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700306 }
307
308
309Returns:
310 An object of the form:
311
312 { # JSON template for an Analytics account tree response. The account tree response is used in the provisioning api to return the result of creating an account, property, and view (profile).
Bu Sun Kim65020912020-05-20 12:08:20 -0700313 &quot;webproperty&quot;: { # JSON template for an Analytics web property. # Web property for the account.
314 &quot;starred&quot;: True or False, # Indicates whether this web property is starred or not.
315 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for this web property.
316 &quot;kind&quot;: &quot;analytics#webproperty&quot;, # Resource type for Analytics WebProperty.
317 &quot;created&quot;: &quot;A String&quot;, # Time this web property was created.
318 &quot;dataRetentionTtl&quot;: &quot;A String&quot;, # The length of time for which user and event data is retained.
Dan O'Mearadd494642020-05-01 07:42:23 -0700319 # This property cannot be set on insert.
Bu Sun Kim65020912020-05-20 12:08:20 -0700320 &quot;websiteUrl&quot;: &quot;A String&quot;, # Website url for this web property.
321 &quot;name&quot;: &quot;A String&quot;, # Name of this web property.
322 &quot;parentLink&quot;: { # Parent link for this web property. Points to the account to which this web property belongs.
323 &quot;type&quot;: &quot;analytics#account&quot;, # Type of the parent link. Its value is &quot;analytics#account&quot;.
324 &quot;href&quot;: &quot;A String&quot;, # Link to the account for this web property.
Dan O'Mearadd494642020-05-01 07:42:23 -0700325 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700326 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this web property belongs.
327 &quot;id&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY.
328 &quot;defaultProfileId&quot;: &quot;A String&quot;, # Default view (profile) ID.
329 &quot;profileCount&quot;: 42, # View (Profile) count for this web property.
330 &quot;dataRetentionResetOnNewActivity&quot;: True or False, # Set to true to reset the retention period of the user identifier with each new event from that user (thus setting the expiration date to current time plus retention period).
Dan O'Mearadd494642020-05-01 07:42:23 -0700331 # Set to false to delete data associated with the user identifier automatically after the rentention period.
332 # This property cannot be set on insert.
Bu Sun Kim65020912020-05-20 12:08:20 -0700333 &quot;level&quot;: &quot;A String&quot;, # Level for this web property. Possible values are STANDARD or PREMIUM.
334 &quot;childLink&quot;: { # Child link for this web property. Points to the list of views (profiles) for this web property.
335 &quot;type&quot;: &quot;analytics#profiles&quot;, # Type of the parent link. Its value is &quot;analytics#profiles&quot;.
336 &quot;href&quot;: &quot;A String&quot;, # Link to the list of views (profiles) for this web property.
337 },
338 &quot;permissions&quot;: { # Permissions the user has for this web property.
339 &quot;effective&quot;: [ # All the permissions that the user has for this web property. These include any implied permissions (e.g., EDIT implies VIEW) or inherited permissions from the parent account.
340 &quot;A String&quot;,
Dan O'Mearadd494642020-05-01 07:42:23 -0700341 ],
342 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700343 &quot;industryVertical&quot;: &quot;A String&quot;, # The industry vertical/category selected for this web property.
344 &quot;selfLink&quot;: &quot;A String&quot;, # Link for this web property.
345 &quot;updated&quot;: &quot;A String&quot;, # Time this web property was last modified.
Dan O'Mearadd494642020-05-01 07:42:23 -0700346 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700347 &quot;account&quot;: { # JSON template for Analytics account entry. # The account created.
348 &quot;kind&quot;: &quot;analytics#account&quot;, # Resource type for Analytics account.
349 &quot;created&quot;: &quot;A String&quot;, # Time the account was created.
350 &quot;childLink&quot;: { # Child link for an account entry. Points to the list of web properties for this account.
351 &quot;href&quot;: &quot;A String&quot;, # Link to the list of web properties for this account.
352 &quot;type&quot;: &quot;analytics#webproperties&quot;, # Type of the child link. Its value is &quot;analytics#webproperties&quot;.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700353 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700354 &quot;permissions&quot;: { # Permissions the user has for this account.
355 &quot;effective&quot;: [ # All the permissions that the user has for this account. These include any implied permissions (e.g., EDIT implies VIEW).
356 &quot;A String&quot;,
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700357 ],
358 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700359 &quot;name&quot;: &quot;A String&quot;, # Account name.
360 &quot;selfLink&quot;: &quot;A String&quot;, # Link for this account.
361 &quot;updated&quot;: &quot;A String&quot;, # Time the account was last modified.
362 &quot;id&quot;: &quot;A String&quot;, # Account ID.
363 &quot;starred&quot;: True or False, # Indicates whether this account is starred or not.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700364 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700365 &quot;profile&quot;: { # JSON template for an Analytics view (profile). # View (Profile) for the account.
366 &quot;eCommerceTracking&quot;: True or False, # Indicates whether ecommerce tracking is enabled for this view (profile).
367 &quot;selfLink&quot;: &quot;A String&quot;, # Link for this view (profile).
368 &quot;starred&quot;: True or False, # Indicates whether this view (profile) is starred or not.
369 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for the web property to which this view (profile) belongs.
370 &quot;kind&quot;: &quot;analytics#profile&quot;, # Resource type for Analytics view (profile).
371 &quot;websiteUrl&quot;: &quot;A String&quot;, # Website URL for this view (profile).
372 &quot;timezone&quot;: &quot;A String&quot;, # Time zone for which this view (profile) has been configured. Time zones are identified by strings from the TZ database.
373 &quot;parentLink&quot;: { # Parent link for this view (profile). Points to the web property to which this view (profile) belongs.
374 &quot;href&quot;: &quot;A String&quot;, # Link to the web property to which this view (profile) belongs.
375 &quot;type&quot;: &quot;analytics#webproperty&quot;, # Value is &quot;analytics#webproperty&quot;.
376 },
377 &quot;id&quot;: &quot;A String&quot;, # View (Profile) ID.
378 &quot;currency&quot;: &quot;A String&quot;, # The currency type associated with this view (profile), defaults to USD. The supported values are:
379 # USD, JPY, EUR, GBP, AUD, KRW, BRL, CNY, DKK, RUB, SEK, NOK, PLN, TRY, TWD, HKD, THB, IDR, ARS, MXN, VND, PHP, INR, CHF, CAD, CZK, NZD, HUF, BGN, LTL, ZAR, UAH, AED, BOB, CLP, COP, EGP, HRK, ILS, MAD, MYR, PEN, PKR, RON, RSD, SAR, SGD, VEF, LVL
380 &quot;stripSiteSearchCategoryParameters&quot;: True or False, # Whether or not Analytics will strip search category parameters from the URLs in your reports.
381 &quot;permissions&quot;: { # Permissions the user has for this view (profile).
382 &quot;effective&quot;: [ # All the permissions that the user has for this view (profile). These include any implied permissions (e.g., EDIT implies VIEW) or inherited permissions from the parent web property.
383 &quot;A String&quot;,
384 ],
385 },
386 &quot;siteSearchQueryParameters&quot;: &quot;A String&quot;, # The site search query parameters for this view (profile).
387 &quot;type&quot;: &quot;A String&quot;, # View (Profile) type. Supported types: WEB or APP.
388 &quot;updated&quot;: &quot;A String&quot;, # Time this view (profile) was last modified.
389 &quot;created&quot;: &quot;A String&quot;, # Time this view (profile) was created.
390 &quot;name&quot;: &quot;A String&quot;, # Name of this view (profile).
391 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this view (profile) belongs.
392 &quot;enhancedECommerceTracking&quot;: True or False, # Indicates whether enhanced ecommerce tracking is enabled for this view (profile). This property can only be enabled if ecommerce tracking is enabled.
393 &quot;siteSearchCategoryParameters&quot;: &quot;A String&quot;, # Site search category parameters for this view (profile).
394 &quot;stripSiteSearchQueryParameters&quot;: True or False, # Whether or not Analytics will strip search query parameters from the URLs in your reports.
395 &quot;excludeQueryParameters&quot;: &quot;A String&quot;, # The query parameters that are excluded from this view (profile).
396 &quot;webPropertyId&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY to which this view (profile) belongs.
397 &quot;childLink&quot;: { # Child link for this view (profile). Points to the list of goals for this view (profile).
398 &quot;type&quot;: &quot;analytics#goals&quot;, # Value is &quot;analytics#goals&quot;.
399 &quot;href&quot;: &quot;A String&quot;, # Link to the list of goals for this view (profile).
400 },
401 &quot;defaultPage&quot;: &quot;A String&quot;, # Default page for this view (profile).
402 &quot;botFilteringEnabled&quot;: True or False, # Indicates whether bot filtering is enabled for this view (profile).
403 },
404 &quot;kind&quot;: &quot;analytics#accountTreeResponse&quot;, # Resource type for account ticket.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700405 }</pre>
406</div>
407
Craig Citro065b5302014-08-14 00:47:23 -0700408</body></html>