You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/dyn/analytics_v3.data.ga.html
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -97,7 +97,7 @@ <h3>Method Details</h3>
97
97
Returns:
98
98
An object of the form:
99
99
100
-
{
100
+
{ # Analytics data for a given profile.
101
101
"kind": "analytics#gaData", # Resource type.
102
102
"rows": [ # Analytics data rows, where each row contains a list of dimension values followed by the metric values. The order of dimensions and metrics is same as specified in the request.
<pre>Returns Analytics Multi-Channel Funnels data for a profile.
84
+
85
+
Args:
86
+
ids: string, Unique table ID for retrieving Analytics data. Table ID is of the form ga:XXXX, where XXXX is the Analytics profile ID. (required)
87
+
start_date: string, Start date for fetching Analytics data. All requests should specify a start date formatted as YYYY-MM-DD. (required)
88
+
end_date: string, End date for fetching Analytics data. All requests should specify an end date formatted as YYYY-MM-DD. (required)
89
+
metrics: string, A comma-separated list of Multi-Channel Funnels metrics. E.g., 'mcf:totalConversions,mcf:totalConversionValue'. At least one metric must be specified. (required)
90
+
sort: string, A comma-separated list of dimensions or metrics that determine the sort order for the Analytics data.
91
+
dimensions: string, A comma-separated list of Multi-Channel Funnels dimensions. E.g., 'mcf:source,mcf:medium'.
92
+
filters: string, A comma-separated list of dimension or metric filters to be applied to the Analytics data.
93
+
max_results: integer, The maximum number of entries to include in this feed.
94
+
start_index: integer, An index of the first entity to retrieve. Use this parameter as a pagination mechanism along with the max-results parameter.
95
+
96
+
Returns:
97
+
An object of the form:
98
+
99
+
{ # Multi-Channel Funnels data for a given profile.
100
+
"kind": "analytics#mcfData", # Resource type.
101
+
"rows": [ # Analytics data rows, where each row contains a list of dimension values followed by the metric values. The order of dimensions and metrics is same as specified in the request.
102
+
[
103
+
{ # A union object representing a dimension or metric value. Only one of "primitiveValue" or "conversionPathValue" attribute will be populated.
104
+
"primitiveValue": "A String", # A primitive metric value. A primitive dimension value.
105
+
"conversionPathValue": [ # A conversion path dimension value, containing a list of interactions with their attributes.
106
+
{
107
+
"nodeValue": "A String", # Node value of an interaction on conversion path. Such as source, medium etc.
108
+
"interactionType": "A String", # Type of an interaction on conversion path. Such as CLICK, IMPRESSION etc.
109
+
},
110
+
],
111
+
},
112
+
],
113
+
],
114
+
"containsSampledData": True or False, # Determines if the Analytics data contains sampled data.
115
+
"totalResults": 42, # The total number of rows for the query, regardless of the number of rows in the response.
116
+
"itemsPerPage": 42, # The maximum number of rows the response can contain, regardless of the actual number of rows returned. Its value ranges from 1 to 10,000 with a value of 1000 by default, or otherwise specified by the max-results query parameter.
117
+
"totalsForAllResults": { # Total values for the requested metrics over all the results, not just the results returned in this response. The order of the metric totals is same as the metric order specified in the request.
118
+
"a_key": "A String", # Key-value pair for the total value of a metric. Key is the metric name and the value is the total value for that metric.
119
+
},
120
+
"nextLink": "A String", # Link to next page for this Analytics data query.
121
+
"id": "A String", # Unique ID for this data response.
122
+
"query": { # Analytics data request query parameters.
123
+
"max-results": 42, # Maximum results per page.
124
+
"sort": [ # List of dimensions or metrics based on which Analytics data is sorted.
125
+
"A String",
126
+
],
127
+
"dimensions": "A String", # List of analytics dimensions.
128
+
"start-date": "A String", # Start date.
129
+
"start-index": 42, # Start index.
130
+
"segment": "A String", # Analytics advanced segment.
131
+
"ids": "A String", # Unique table ID.
132
+
"metrics": [ # List of analytics metrics.
133
+
"A String",
134
+
],
135
+
"filters": "A String", # Comma-separated list of dimension or metric filters.
136
+
"end-date": "A String", # End date.
137
+
},
138
+
"previousLink": "A String", # Link to previous page for this Analytics data query.
139
+
"profileInfo": { # Information for the profile, for which the Analytics data was requested.
140
+
"webPropertyId": "A String", # Web Property ID to which this profile belongs.
141
+
"internalWebPropertyId": "A String", # Internal ID for the web property to which this profile belongs.
142
+
"tableId": "A String", # Table ID for profile.
143
+
"profileId": "A String", # Profile ID.
144
+
"profileName": "A String", # Profile name.
145
+
"accountId": "A String", # Account ID to which this profile belongs.
146
+
},
147
+
"columnHeaders": [ # Column headers that list dimension names followed by the metric names. The order of dimensions and metrics is same as specified in the request.
148
+
{
149
+
"dataType": "A String", # Data type. Dimension and metric values data types such as INTEGER, DOUBLE, CURRENCY, MCF_SEQUENCE etc.
150
+
"columnType": "A String", # Column Type. Either DIMENSION or METRIC.
Copy file name to clipboardExpand all lines: docs/dyn/analytics_v3.management.accounts.html
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -89,11 +89,11 @@ <h3>Method Details</h3>
89
89
Returns:
90
90
An object of the form:
91
91
92
-
{
92
+
{ # An account collection provides a list of Analytics accounts to which a user has access. The account collection is the entry point to all management information. Each resource in the collection corresponds to a single Analytics account.
93
93
"username": "A String", # Email ID of the authenticated user
94
94
"kind": "analytics#accounts", # Collection type.
95
95
"items": [ # A list of accounts.
96
-
{
96
+
{ # JSON template for Analytics account entry.
97
97
"kind": "analytics#account", # Resource type for Analytics account.
98
98
"name": "A String", # Account name.
99
99
"created": "A String", # Time the account was created.
Copy file name to clipboardExpand all lines: docs/dyn/analytics_v3.management.goals.html
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -92,11 +92,11 @@ <h3>Method Details</h3>
92
92
Returns:
93
93
An object of the form:
94
94
95
-
{
95
+
{ # A goal collection lists Analytics goals to which the user has access. Each profile can have a set of goals. Each resource in the Goal collection corresponds to a single Analytics goal.
96
96
"username": "A String", # Email ID of the authenticated user
97
97
"kind": "analytics#goals", # Collection type.
98
98
"items": [ # A list of goals.
99
-
{
99
+
{ # JSON template for Analytics goal resource.
100
100
"kind": "analytics#goal", # Resource type for an Analytics goal.
101
101
"visitTimeOnSiteDetails": { # Details for the goal of the type VISIT_TIME_ON_SITE.
102
102
"comparisonType": "A String", # Type of comparison. Possible values are LESS_THAN or GREATER_THAN.
Copy file name to clipboardExpand all lines: docs/dyn/analytics_v3.management.profiles.html
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -91,11 +91,11 @@ <h3>Method Details</h3>
91
91
Returns:
92
92
An object of the form:
93
93
94
-
{
94
+
{ # A profile collection lists Analytics profiles to which the user has access. Each resource in the collection corresponds to a single Analytics profile.
95
95
"username": "A String", # Email ID of the authenticated user
96
96
"kind": "analytics#profiles", # Collection type.
97
97
"items": [ # A list of profiles.
98
-
{
98
+
{ # JSON template for an Analytics profile.
99
99
"defaultPage": "A String", # Default page for this profile.
100
100
"kind": "analytics#profile", # Resource type for Analytics profile.
101
101
"excludeQueryParameters": "A String", # The query parameters that are excluded from this profile.
Copy file name to clipboardExpand all lines: docs/dyn/analytics_v3.management.segments.html
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -89,11 +89,11 @@ <h3>Method Details</h3>
89
89
Returns:
90
90
An object of the form:
91
91
92
-
{
92
+
{ # An advanced segment collection lists Analytics advanced segments that the user has access to. Each resource in the collection corresponds to a single Analytics advanced segment.
93
93
"username": "A String", # Email ID of the authenticated user
94
94
"kind": "analytics#segments", # Collection type for advanced segments.
95
95
"items": [ # A list of advanced segments.
96
-
{
96
+
{ # JSON template for an Analytics advanced segment.
97
97
"definition": "A String", # Advanced segment definition.
98
98
"kind": "analytics#segment", # Resource type for Analytics advanced segment.
99
99
"segmentId": "A String", # Segment ID. Can be used with the 'segment' parameter in Data Feed.
Copy file name to clipboardExpand all lines: docs/dyn/analytics_v3.management.webproperties.html
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -90,11 +90,11 @@ <h3>Method Details</h3>
90
90
Returns:
91
91
An object of the form:
92
92
93
-
{
93
+
{ # A web property collection lists Analytics web properties to which the user has access. Each resource in the collection corresponds to a single Analytics web property.
94
94
"username": "A String", # Email ID of the authenticated user
0 commit comments