ga_meta | R Documentation |
Get current dimensions and metrics available in GA API.
ga_meta(
version = c("universal", "data"),
propertyId = NULL,
cached = TRUE,
no_api = FALSE
)
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 |
dataframe of dimensions and metrics available to use
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
## 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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.