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
}
}
'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
}
}
'Was this page helpful?