gtm_variables_delete | R Documentation |
This deletes a variable in a GTM workspace
gtm_variables_delete( account_id, container_id, workspace_id, variable_id, force = c(TRUE, FALSE) )
account_id |
Account Id |
container_id |
Container Id |
workspace_id |
Workspace Id |
variable_id |
Variable Id |
force |
Force deletion without user input |
Other variable functions:
gtm_variables_create()
,
gtm_variables_get()
,
gtm_variables_list()
,
gtm_variables_revert()
,
gtm_variables_update()
## Not run: accountId <- 1234567 containerId <- 7654321 workspaceId <- 10 variableId <- 30 gtm_variables_delete(accountId, containerId, workspaceId, variableId) # This will delete tag %s. Are you sure you want to continue? # 1: Yes # 2: No # Selection: 1 # Variable 30 has been deleted. variableId = 31 gtm_variables_delete(accountId, containerId, workspaceId, variableId, "TRUE") # Variable 31 has been deleted. ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.