Reputation: 2479
I am trying to write scripts using the Google Api nodejs client which should change the GSuite settings of a user. Meaning all settings of the main google apps like gmail, gdrive, calendar and so on.
However I encountered that with the google api I can only access a small portions of those settings.
For example, I want to change the "send cancelation period" to 10 seconds in the user`s Gmail setting. I could not find any resource in the Gmail API Reference which let me do that.
Is this just not possible or is there another way to access all the settings of a user?
Upvotes: 0
Views: 444
Reputation: 6052
The settings that can be changed by the APIs are referenced in the documentation. This one here is indeed the appropriate one to look for the specific API and its methods - so if you haven't found the particular setting you want changed, it means that it cannot be changed by the API.
As a further matter, you can make use of Google Issue Tracker and file a Feature Request
for a specific setting, for example.
Reference
Upvotes: 1