Questions tagged [google-groups-settings]

With the Google Apps Groups Settings API account-level administrators can manage the group settings for your Google Apps account.

Google Groups provides a convenient way for your users to send messages to groups of people they frequently contact. With the Google Apps Groups Settings API account-level administrators can manage the group settings for your Google Apps account.

Once your groups are initially set up using the Provisioning API, use the Group Settings API to manage internal and external group access, edit the group's notifications, configure discussion archiving and message moderation, and customize your account's user groups.

33 questions
3
votes
1 answer

How do you get the groupUniqueId for the Google Group Settings API?

I am looking at this API: https://developers.google.com/admin-sdk/groups-settings/v1/reference/groups/get However, when I try the test at the bottom, it always returns 400 Bad request. I have tried using the Google group email address (without the…
2
votes
0 answers

Appmaker group access permissions for developer to add group to role

I found some helpful information in this post [Adding google groups to roles ] which helped me realize I have to have permissions to at least read group membership in order to get a group to properly assign to a role under access permissions (or…
Cory G
  • 21
  • 1
2
votes
2 answers

How to get a group type using Google Apps APIs?

I'm currently developing a Google Apps Script that modifies the settings of all groups of a domain, but the settings applied depend on the group type (i.e. email list or collaborative inbox, mostly). However, I've not found a way to determine the…
2
votes
2 answers

How can I change the delivery settings of a google group member using api and .Net

How can I change the delivery settings of a google group member using the google api? Within a google group using the User interface I can change the delivery settings of each member: - no email - Abridged - Digest - All email I have found the…
2
votes
0 answers

Email field from Google Form to be added into a Google Group

I have a Google form, from which I want to add the Email field into a Google group. Currently, the form responses are recorded in a spreadsheet (on Google drive) and also, an automatic response is sent to their email id acknowledging their…
2
votes
2 answers

How to export 15000+ Google Group members?

There are around 15000+ members in my Google Group and I'd like to export them to CSV file. Google Groups says there are too many to export Is there any other way to export all the 15000+ members?
2
votes
1 answer

Domain wide delegation authentication for google groups settings API?

We have a google corporate account and are already using the Groups Provisioning API to manage groups in our domain. We now need to tweak group settings via the "group settings api". Our java code acts as special admin user in our domain for all…
nebulize
  • 93
  • 1
  • 1
  • 4
1
vote
1 answer

Adding members to google group through google-apis

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…
1
vote
1 answer

How to set Google Groups moderation and posting permissions

I have got the below script working for me.... (Script auto creates a google group with data from a spreadsheet that is auto populated with data from a form...) function onFormSubmit() { var sheet =…
1
vote
2 answers

Google groups CAN_REQUEST_TO_JOIN

Google groups settings SDK (python) doesn't seem to make a difference between "Anyone can ask" and "Anyone in the organisation can ask" to join permissions. The whoCanJoin permission parameter only allows the following values : ANYONE_CAN_JOIN…
Mibou
  • 936
  • 2
  • 13
  • 25
1
vote
1 answer

Group Settings API seems to be bugged

I don't believe there is much to say. Whenever I PATCH or UPDATE the "whoCanPostMessage" setting from "ALL_MEMBERS_CAN_POST" to "ALL_MANAGERS_CAN_POST" the Google API backend just ignores it. This issue is present from 06-06-2016.
AMS
  • 244
  • 6
  • 21
1
vote
1 answer

Google Group Setting API, shows error on updating group setting

I am working on client interface which pushes and pulls information from Google Group Setting API and google group api. This client interface is written in asp.net (vb.net). I have successfully created group, added members, removed members and…
Anjum
  • 681
  • 3
  • 14
  • 38
1
vote
1 answer

Google AppEngine with Service Account but invalid Credentials

I have tried to get a group settings with group settings API using Google App Engine 1.7.5 with python 2.5 following a simple example here. this is my app.yaml: application: {{APP_ID}} version: 1 runtime: python api_version: 1 handlers: - url: /.* …
1
vote
1 answer

Groups API - someGroup.setShowInGroupDirectory(true) - "List this group in the directory" is checked - group not appearing in "Browse All"

Google Apps for Business account here. SETUP I am creating a new group using the Directory API -> all ok. I am then doing the following: get the Group I just created using the Groups API and assign it to "someGroup" invoke…
1
vote
2 answers

How to grant acces permantly with OAuth2

I have tried to use OAuth2 to build a group settings service with the following: def groupSettingsService(request): CLIENT_SECRETS = os.path.join(os.path.dirname(__file__), 'client_secrets.json') FLOW =…
Drwhite
  • 1,545
  • 4
  • 21
  • 44
1
2 3