Skip to main content
PATCH
/
api
/
v1
/
me
/
email-notifications
Update Email Notifications
curl --request PATCH \
  --url https://api.example.com/api/v1/me/email-notifications \
  --header 'Content-Type: application/json' \
  --data '
{
  "email_notifications": true
}
'
{
  "email_notifications": true
}
Enables or disables the daily compliance email digest for the authenticated user.

Request Body

email_notifications
boolean
required
Whether to receive daily email digests of active compliance alerts.

Request

curl -X PATCH \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{"email_notifications": true}' \
  https://app.taxhomebase.com/api/v1/me/email-notifications

Response

{
  "email_notifications": true
}