Shivaji
Shivaji

Reputation: 11

How to fetch user created Group information using Google apps script

How we can find user created groups following attributes using Google apps Script. 1. Group Creation Time(Group created by user) 2. Posting permission Change by user (Name or ID).

Upvotes: 1

Views: 595

Answers (1)

Gerardo
Gerardo

Reputation: 3845

In the Reports API you can get the activities related to groups. There are many events for groups described here.

You can also get an example of how to call this api from apps script: https://developers.google.com/apps-script/advanced/admin-sdk-reports

Upvotes: 2

Related Questions