Skip to main content
PUT
/
api
/
user
/
notification-preferences
Update notification preferences
curl --request PUT \
  --url https://your-instance.example.com/api/user/notification-preferences \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "notificationPreferences": {
    "aiResponses": true,
    "inboundInAutopilot": true,
    "automationTriggers": true,
    "emailSync": true,
    "escalations": true,
    "assignments": true,
    "calls": true,
    "campaigns": true,
    "other": true
  }
}
'
{}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
notificationPreferences
object
required

Response

Notification preferences updated

Generic response envelope. Endpoint-specific fields are intentionally open.