gtm_versions_update {googleTagManageR} | R Documentation |
Update a container version
Description
Updates a container Version
Usage
gtm_versions_update(
account_id,
container_id,
version_id,
name = NULL,
description = NULL
)
Arguments
account_id |
Account Id |
container_id |
Container Id |
version_id |
Version Id |
name |
Version Name |
description |
Version Description |
See Also
Other version functions:
gtm_versions_delete()
,
gtm_versions_get()
Examples
## Not run:
accountId <- 1234567
containerId <- 7654321
versionId <- 6
newName <- 'My Cool New Version'
newDescription <- 'My new version does something cool'
version <- gtm_versions_update(accountId, containerId, versionId, newName, newDescription)
## End(Not run)
[Package googleTagManageR version 0.2.0 Index]