gtm_workspaces_update {googleTagManageR} | R Documentation |
Update a workspace
Description
This updates the name or description of an existing workspace.
Usage
gtm_workspaces_update(
account_id,
container_id,
workspace_id,
name,
description = NULL
)
Arguments
account_id |
Account Id |
container_id |
Container Id |
workspace_id |
Workspace Id |
name |
Workspace Name |
description |
Workspace Description |
See Also
Other workspace functions:
gtm_workspaces_create()
,
gtm_workspaces_delete()
,
gtm_workspaces_get()
,
gtm_workspaces_list()
,
gtm_workspaces_preview()
,
gtm_workspaces_resolve()
,
gtm_workspaces_status()
,
gtm_workspaces_submit()
,
gtm_workspaces_sync()
Examples
## Not run:
accountId <- 1234567
containerId <- 7654321
workspaceId <- 6
name <- 'New Analytics Tags'
description <- 'Adding element visibility tags and scroll tracking'
workspace <- gtm_workspaces_update(accountId, containerId, workspaceId, name, description)
## End(Not run)
[Package googleTagManageR version 0.2.0 Index]