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
}
Toggle the daily compliance email digest.
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
}
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
{
"email_notifications": true
}