Manage Email Notifications

Email configuration

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 Marketplace app,

  1. Flip the toggle to off.

With the API

Ensure you set the correct global segment and use a Marketplace-specific personal access token (PAT) when using the Marketplace API. See the Marketplace API docs for additional guidance or to download the OpenAPI YAML for your own client generation.

Update user notification preferences

put

Update the notification preferences for the current user

Authorizations
Body
Responses
200Success
application/json
put
/api/notification/user-preferences
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
        }
      ]
    }
  ]
}
200Success
{
  "recipientId": "123e4567-e89b-12d3-a456-426614174000",
  "preferences": [
    {
      "provider": "text",
      "typePreferences": [
        {
          "notificationType": "text",
          "enabled": true
        }
      ]
    }
  ]
}

Last updated

Was this helpful?