1

Trying to find a way to add members to google group through google API but any search result always end up in using admin sdk for this. But for using Admin SDK it requires to sign up on Google workspace. Is there any other way to achieve the same without signing up on workspace through simple api call using OAuth.

Kanthi
  • 31
  • 2

1 Answers1

0
  • You are not a Google Workspace user but a Consumer (gmail) user
  • You do not have access to the Admin SDK (apart from for publicly available methods)

In this case, you can retrieve Google Groups programmatically is via GroupsApp in Google Apps Script.

However, this only allows you to get group / user information, not to create new users.

Unfortunately the latter is a service that is only available for Google Workspace users.

ziganotschka
  • 25,866
  • 2
  • 16
  • 33