gtm_triggers_list {googleTagManageR}R Documentation

List all triggers in a workspace

Description

This will return a data frame all your available triggers in a given workspace If you want to get the information for a single trigger, use gtm_triggers_get

Usage

gtm_triggers_list(account_id, container_id, workspace_id)

Arguments

account_id

Account Id

container_id

Container Id

workspace_id

Workspace Id

See Also

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

Other trigger functions: gtm_triggers_create(), gtm_triggers_delete(), gtm_triggers_get(), gtm_triggers_revert(), gtm_triggers_update()

Examples


## Not run: 
accountId <- 1234567
containerId <- 7654321
workspaceId <- 3

triggers <- gtm_triggers_list(accountId, containerId, workspaceId)


## End(Not run)


[Package googleTagManageR version 0.2.0 Index]