> ## Documentation Index
> Fetch the complete documentation index at: https://developer.box.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Suppress notifications

For some API calls, you can block email and webhook notifications by
including a `box-notifications: off` header with the API call.

```sh cURL theme={null}
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"
      }
    }'
```

As an example, this can be used for a virus-scanning tool to download copies
every user's files in an enterprise without every collaborator on the file
receiving an email informing them of the download.

All actions will still appear in users updates feed and the audit-logs.

<Warning>
  **Scope requirement**

  Notification suppression is available for approved applications only. Contact
  support to request the required scopes to be enabled for your application.

  The following settings need to be configured for your application for this feature
  to properly work.

  * **Can suppress email notifications from API calls** - available on request via support
  * **Manage Enterprise Properties** - available via the developer console
  * Co-admin permissions of **Edit settings for your company**.
</Warning>

<Note>
  Some notifications can not be suppressed, most notable the creation is users,
  comments, collaborations, task assignments, and when changing a user's login.
</Note>
