Suppress notifications
Suppress notifications
For some API calls, you can block email and webhook notifications by including a box-notifications: off
header with the API call.
cURL
curl -X POST https://api.box.com/2.0/folders \
-H "box-notifications: off" \
-H "authorization: Bearer ACCESS_TOKEN" \
-d '{
"name": "New Folder",
"parent": {
"id": "0"
}
}'
たとえば、これをウイルススキャンツールに使用すると、社内でユーザーのファイルのコピーをダウンロードするたびに、そのファイルのすべてのコラボレータにダウンロードに 関する通知メールが届くことはなくなります。
この場合でも、すべてのアクションがユーザーの更新フィードと監査ログに表示されます。