ga_meta: Get current dimensions and metrics available in GA API.

View source: R/meta.R

ga_metaR Documentation

Get current dimensions and metrics available in GA API.

Description

Get current dimensions and metrics available in GA API.

Usage

ga_meta(
  version = c("universal", "data"),
  propertyId = NULL,
  cached = TRUE,
  no_api = FALSE
)

Arguments

version

The Google Analytics API metadata to fetch - "universal" for Universal and earlier versions, "data" for Google Analytics 4

propertyId

If requesting from Google Analytics 4, pass the propertyId to get metadata specific to that property. Leaving it NULL or 0 will return universal metadata

cached

Whether to use a cached version or to use the API to fetch the results again

no_api

Don't call the API, just return googleAnalyticsR::meta4

Value

dataframe of dimensions and metrics available to use

See Also

https://developers.google.com/analytics/devguides/reporting/metadata/v3/reference/metadata/columns/list, https://developers.google.com/analytics/devguides/reporting/data/v1/rest/v1alpha/properties/getMetadata

Examples


## Not run: 

# universal analytics
ga_meta()

# Google Analytics 4 metadata from the Data API
ga_meta("data")

# Google Analytics 4 metadata for a particular Web Property
ga_meta("data", propertyId = 206670707)


## End(Not run)

googleAnalyticsR documentation built on Oct. 16, 2022, 1:06 a.m.