转让所有权时如何关闭电子邮件通知?
How do I turn off email notifications when transferring ownership?
我正在设置 api 并且需要将驱动器中某些文件的所有权从我的服务帐户更改为我的非服务帐户。如何关闭电子邮件通知?我已经通过 Python as well as via the docs (at the bottom of the page) 进行了尝试。电子邮件真的很烦人。
new_permission = {'value': 'me@example.com', 'type': 'user', 'role': 'owner', 'sendNotificationEmails':'false'}
self.service.permissions().insert(fileId=self.doc['copied']['id'], body=new_permission, sendNotificationEmails='false').execute()
正如@Grant 在评论中提到的那样,使用布尔值 false
而不是字符串 'false'
.
由于您要更改文档的所有者,因此忽略 sendNotificationEmails,因为 per the documentation:
Whether to send notification emails when sharing to users or groups.
This parameter is ignored and an email is sent if the role
is owner
.
(Default: true
)
我正在设置 api 并且需要将驱动器中某些文件的所有权从我的服务帐户更改为我的非服务帐户。如何关闭电子邮件通知?我已经通过 Python as well as via the docs (at the bottom of the page) 进行了尝试。电子邮件真的很烦人。
new_permission = {'value': 'me@example.com', 'type': 'user', 'role': 'owner', 'sendNotificationEmails':'false'}
self.service.permissions().insert(fileId=self.doc['copied']['id'], body=new_permission, sendNotificationEmails='false').execute()
正如@Grant 在评论中提到的那样,使用布尔值 false
而不是字符串 'false'
.
由于您要更改文档的所有者,因此忽略 sendNotificationEmails,因为 per the documentation:
Whether to send notification emails when sharing to users or groups. This parameter is ignored and an email is sent if the
role
isowner
. (Default:true
)