Skip to main content
PATCH
/
v1
/
notifications
/
preferences
Update Notification Preferences
curl --request PATCH \
  --url https://app.nex.ai/api/developers/v1/notifications/preferences \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "frequency_minutes": 123,
  "enabled_types": [
    "<string>"
  ],
  "digest_enabled": true
}
'
{
  "frequency_minutes": 123,
  "enabled_types": [
    "<string>"
  ],
  "digest_enabled": true
}

Authorizations

Authorization
string
header
required

API key for authentication (format: "Bearer YOUR_API_KEY")

Body

application/json

Notification preferences to update

frequency_minutes
integer

How often the notification system polls for new alerts (in minutes)

enabled_types
string[]

List of notification types to enable

digest_enabled
boolean

Whether to enable digest notifications

Response

Updated notification preferences

frequency_minutes
integer

How often the notification system polls for new alerts (in minutes)

enabled_types
string[]

List of enabled notification types

digest_enabled
boolean

Whether digest notifications are enabled

Last modified on March 24, 2026