ga_users_add | R Documentation |
If you supply more than one email
, then batch processing will be applied. Batching has special rules that give you 30 operations for the cost of one API call against your quota. When batching you will only get a TRUE
result on successful batch, but individual entries may have failed. Check via ga_users_list afterwards and try to add individual linkIds to get more descriptive error messages.
ga_users_add(
email,
permissions,
accountId,
webPropertyId = NULL,
viewId = NULL
)
email |
The email(s) of the user(s) to add. Has to have a Google account. |
permissions |
Which permissions to add as a vector - |
accountId |
Account Id |
webPropertyId |
Web Property Id - set to NULL to operate on account level only |
viewId |
viewId - set to NULL to operate on webProperty level only |
TRUE
if successful
Google help article on user permissions
Other User management functions:
ga_users_delete_linkid()
,
ga_users_delete()
,
ga_users_list()
,
ga_users_update()
## Not run:
library(googleAnalyticsR)
ga_auth()
ga_users_add(c("the_email@company.com", "another_email@company.com"),
permissions = "EDIT", accountId = 47480439)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.