2017-01-23 91 views
0

有沒有辦法通過google admin API修改「查看會員電子郵件地址」設置?從一些粗略的調查來看,似乎並非如此,但我很樂意被證明是錯誤的。請注意,此設置與現有的whoCanViewMembership設置不同。修改「查看會員電子郵件地址」設置

回答

0

現在這是不可能的。 group settings documentation列出了可用的設置,並且未列出「查看成員電子郵件地址」。據我所知,沒有其他的API。

{ 
    "kind": "groupsSettings#groups", 
    "email": string, 
    "name": string, 
    "description": string, 
    "whoCanAdd": string, 
    "whoCanJoin": string, 
    "whoCanViewMembership": string, 
    "whoCanViewGroup": string, 
    "whoCanInvite": string, 
    "allowExternalMembers": string, 
    "whoCanPostMessage": string, 
    "allowWebPosting": string, 
    "primaryLanguage": string, 
    "maxMessageBytes": integer, 
    "isArchived": string, 
    "archiveOnly": string, 
    "messageModerationLevel": string, 
    "spamModerationLevel": string, 
    "replyTo": string, 
    "customReplyTo": string, 
    "includeCustomFooter": string, 
    "customFooterText": string, 
    "sendMessageDenyNotification": string, 
    "defaultMessageDenyNotificationText": string, 
    "showInGroupDirectory": string, 
    "allowGoogleCommunication": string, 
    "membersCanPostAsTheGroup": string, 
    "messageDisplayFont": string 
    "includeInGlobalAddressList": string, 
    "whoCanLeaveGroup": string, 
    "whoCanContactOwner": string, 
} 
相關問題