Reputation: 1308
Google Management API provides methods to get list of custom data sources and custom dimensions.
However, I need to get the list of custom dimensions that belong to a custom data set, but can't find how. Is it possible at all?
Upvotes: 1
Views: 107
Reputation: 5168
Unfortunatly it is not possible. The only data available about a custom data source is as follows:
{
"id": string,
"kind": "analytics#customDataSource",
"selfLink": string,
"accountId": string,
"webPropertyId": string,
"name": string,
"description": string,
"type": string,
"uploadType": "analytics#uploads",
"uploadType": "analytics#dailyUploads",
"importBehavior": "OVERWRITE",
"importBehavior": "SUMMATION",
"profilesLinked": [
string
],
"created": datetime,
"updated": datetime,
"parentLink": {
"type": "analytics#webproperty",
"href": string
},
"childLink": {
"type": "analytics#dailyUploads",
"href": string
},
"childLink": {
"type": "analytics#uploads",
"href": string
}
}
Upvotes: 1