| gtm_tags_delete | R Documentation |
This deletes a tag in a GTM workspace
gtm_tags_delete(
account_id,
container_id,
workspace_id,
tag_id,
force = c("TRUE", "FALSE")
)
account_id |
Account Id |
container_id |
Container Id |
workspace_id |
Workspace Id |
tag_id |
Tag Id |
force |
Force deletion without user input |
Other tag functions:
gtm_tags_create(),
gtm_tags_get(),
gtm_tags_list(),
gtm_tags_revert(),
gtm_tags_update()
## Not run: accountId <- 1234567 containerId <- 7654321 workspaceId <- 10 tagId <- 100 gtm_tags_delete(accountId, containerId, workspaceId, tagId) # This will delete tag %s. Are you sure you want to continue? # 1: Yes # 2: No # Selection: 1 # Tag 100 has been deleted. tagId = 101 gtm_tags_delete(accountId, containerId, workspaceId, tagId, "TRUE") # Tag 101 has been deleted. ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.