Users
Update my notification preferences
Merges the supplied map into the authenticated user's preferences. Send only the keys you want to change — omitted keys keep their current value. Setting a key to false stops that e-mail for this user in every account they belong to. Returns the full map. An unknown code, a non-boolean value, or an empty body is rejected with 400 and nothing is written.
put/v1/users/self/notification-preferences
Request body
Example request
{
"DocumentCompleted": true,
"SignerDeclined": true,
"DocumentCancelled": true,
"DocumentAboutToExpire": true,
"DocumentExpired": true,
"DocumentExpirationReset": true,
"DocumentProcessingFailed": true,
"TemplateProcessingFailed": true,
"SignerWhatsappFailed": true
}Response
The updated preferences
Example response
{
"status": 200,
"data": {
"DocumentCompleted": true,
"SignerDeclined": true,
"DocumentCancelled": true,
"DocumentAboutToExpire": true,
"DocumentExpired": true,
"DocumentExpirationReset": true,
"DocumentProcessingFailed": true,
"TemplateProcessingFailed": true,
"SignerWhatsappFailed": true
}
}Changes
No recorded changes to this endpoint across all 1 revision of this API.