# Manage Email Notifications

## Email configuration

Email notifications are enabled by default for the Request app.

To disable email notifications for your organization, follow the instructions below:

**Required Immuta permission**: `APPLICATION_ADMIN`

1. Navigate to the <i class="fa-gear">:gear:</i> [**Integrations** page](https://app.immutacloud.com/marketplace/settings/integrations).
2. Select **Disable** for email notifications.

## Personal email preferences

When email notifications are enabled for your organization, they are on by default for every user.

To turn email notifications off, follow the instructions below:

### With the UI

The notifications will be sent to the email found on the user's profile page which is automatically populated by the [configured IAM](/saas/configuration/application-configuration/how-to-guides/config-builder-guide.md#use-existing-identity-access-manager). To turn off notifications for yourself in the Request app,

1. Navigate to the [**Notification Preferences** page](https://app.immutacloud.com/marketplace/notification-preferences).
2. Flip the toggle to **off**.

### With the API

Ensure you set the [correct global segment](/saas/developer-guides/api-intro/marketplace-api.md#base-path-and-global-segment) and use a [Request app personal access token (PAT)](/saas/developer-guides/api-intro/marketplace-api.md#generate-a-personal-access-token-pat) when using the Request app API. See the [Request app API docs](/saas/developer-guides/api-intro/marketplace-api.md) for additional guidance or to download the OpenAPI YAML for your own client generation.

## Update user preferences

> Update the user preferences for notifications

```json
{"openapi":"3.0.0","info":{"title":"Immuta Data Marketplace","version":"1.0"},"tags":[{"name":"Notification","description":"APIs for managing notifications"}],"servers":[{"url":"https://{global-segment}.api.immutacloud.com/marketplace","description":"Marketplace API Endpoint","variables":{"global-segment":{"default":"na","enum":["na","eu","ap"],"description":"Marketplace API global segment"}}}],"security":[{"bearer":[]}],"components":{"securitySchemes":{"bearer":{"scheme":"bearer","bearerFormat":"JWT","type":"http"}},"schemas":{"UpdateUserPreferencesRequest":{"type":"object","properties":{"preferences":{"type":"array","items":{"type":"object","properties":{"provider":{"type":"string"},"typePreferences":{"type":"array","items":{"type":"object","properties":{"notificationType":{"type":"string"},"enabled":{"type":"boolean"}},"required":["notificationType","enabled"]}}},"required":["provider","typePreferences"]}}},"required":["preferences"]},"UpdateUserPreferencesResponse":{"type":"object","properties":{"recipientId":{"type":"string","format":"uuid"},"preferences":{"type":"array","items":{"type":"object","properties":{"provider":{"type":"string"},"typePreferences":{"type":"array","items":{"type":"object","properties":{"notificationType":{"type":"string"},"enabled":{"type":"boolean"}},"required":["notificationType","enabled"]}}},"required":["provider","typePreferences"]}}},"required":["recipientId","preferences"]}}},"paths":{"/api/notification/user-preferences":{"put":{"operationId":"updateUserPreferences","parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdateUserPreferencesRequest"}}}},"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdateUserPreferencesResponse"}}}}},"tags":["Notification"],"description":"Update the user preferences for notifications","summary":"Update user preferences"}}}}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://documentation.immuta.com/saas/request/notifications/how-to-guides/manage-email-notifications.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
