Skip to main content
PUT
/
v1
/
people
/
me
/
email-preferences
Update current user email notification preferences
curl --request PUT \
  --url http://localhost:3333/v1/people/me/email-preferences \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "preferences": {
    "policyNotifications": true,
    "taskReminders": true,
    "weeklyTaskDigest": true,
    "unassignedItemsNotifications": true,
    "taskMentions": true,
    "taskAssignments": true
  }
}
'

Authorizations

X-API-Key
string
header
required

API key for authentication

Body

application/json
preferences
object
required

Response

200 - undefined