Is there a way to notify users via email, similar to how Google Analytics does in their web application, once permissions have been granted? I am currently using this method. Here is an example of my request:
var request = gapi.client.analytics.management.accountUserLinks.insert(
{
'accountId': accountId,
'resource': {
'permissions': {
'local': [
'EDIT',
'COLLABORATE',
'READ_AND_ANALYZE'
]
},
'userRef': {
'email': email
}
}
});
Thank you.