Manage Email Notifications
Set up your Request app notifications to go to your email
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
Navigate to the Integrations page.
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. To turn off notifications for yourself in the Request app,
Navigate to the Notification Preferences page.
Flip the toggle to off.
With the API
Ensure you set the correct global segment and use a Request app personal access token (PAT) when using the Request app API. See the Request app API docs for additional guidance or to download the OpenAPI YAML for your own client generation.
Update the user preferences for notifications
PUT /marketplace/api/notification/user-preferences HTTP/1.1
Host: na.api.immutacloud.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 100
{
"preferences": [
{
"provider": "text",
"typePreferences": [
{
"notificationType": "text",
"enabled": true
}
]
}
]
}{
"recipientId": "123e4567-e89b-12d3-a456-426614174000",
"preferences": [
{
"provider": "text",
"typePreferences": [
{
"notificationType": "text",
"enabled": true
}
]
}
]
}Last updated
Was this helpful?

