gtm_tags_revert {googleTagManageR}R Documentation

Reverts a tag,

Description

This reverts a tag back to its original, unmodified state.

Usage

gtm_tags_revert(account_id, container_id, workspace_id, tag_id)

Arguments

account_id

Account Id

container_id

Container Id

workspace_id

Workspace Id

tag_id

Tag Id

See Also

https://developers.google.com/tag-platform/tag-manager/api/v2/reference/accounts/containers/workspaces/tags/revert

Other tag functions: gtm_tags_create(), gtm_tags_delete(), gtm_tags_get(), gtm_tags_list(), gtm_tags_update()

Examples


## Not run: 
accountId <- 1234567
containerId <- 7654321
workspaceId <- 10
tagId <- 102

tag <- gtm_tags_revert(accountId, containerId, workspaceId, tagId)

# Changes to tag 102 have been reverted

## End(Not run)


[Package googleTagManageR version 0.2.0 Index]