Roman
Roman

Reputation: 1308

How to get custom dimensions of a custom data source via management API?

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

Answers (1)

Matt
Matt

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

Related Questions