Our platform is designed to keep you and your users informed with timely updates. When you create a user through our API (via POST Request), we automatically enroll them in key system notification to ensure they don't miss important information. This saves you time and ensures users receive relevant updates right from the start. Of course, we understand that preferences vary, so we provide options to customize these settings.
Digest Emails
Upon user creation via our API, users are automatically enrolled in our platform's digest email notifications. This digest is a summary of what happened with users respective locations during a selected period of time. It is a great way to stay on top of listings and overall performance.
- Default Frequency: Monthly
-
Alternative options:
- Weekly
- Quarterly
- Never (for unsubscribing)
The "MONTHLY" cadence means users will receive a single email containing a summary of platform activities once per month.
If you prefer a different frequency, you can specify "WEEKLY" or "QUARTERLY" during user creation through the API.
To disable these emails for a user, specify “NEVER” for the frequency.
Digest Email Configurations
Weekly Frequency
"emailSettings": [
{
"emailType": "DIGEST",
"frequency": "WEEKLY"
}
]
Monthly Frequency
Note: This setting is the the default option when creating a new user. Users will automatically be enrolled in monthly digest emails if left blank or no other frequency is defined.
"emailSettings": [
{
"emailType": "DIGEST",
"frequency": "MONTHLY"
}
]
Quartlerly Frequency
"emailSettings": [
{
"emailType": "DIGEST",
"frequency": "QUARTERLY"
}
]
Never (Unsubscribed)
"emailSettings": [
{
"emailType": "DIGEST",
"frequency": "NEVER"
}
]
Unread Review Emails
Users that subscribe to our reviews product will also be automatically enrolled in the Unread Review (new reviews) notifications. This ensures they are promptly alerted to new reviews on their listings.
- Default Frequency: Daily
-
Alternative options:
- Always (immediate)
- Never (for unsubscribing)
The "DAILY" cadence means users will receive a notification email once per day if they have unread reviews. If you need users to be notified as soon as a review is submitted, you can specify "ALWAYS" during user creation through the API. To disable these emails for a user, specify “NEVER” for the frequency.
Digest Email Configurations
Daily Frequency
Note: This setting is the the default option when creating a new user. Users will automatically be enrolled in daily new review emails if left blank or no other frequency is defined.
"emailSettings": [
{
"emailType": "UNREAD_REVIEW_NOTIFICATION",
"frequency": "DAILY"
}
]
Immediate Frequency
"emailSettings": [
{
"emailType": "UNREAD_REVIEW_NOTIFICATION",
"frequency": "ALWAYS"
}
]
Never (Unsubscribe)
"emailSettings": [
{
"emailType": "UNREAD_REVIEW_NOTIFICATION",
"frequency": "NEVER"
}
]
Full sample
For users that are setting the configurations for both the Digest Email and Unread Reviews, the configurations will look something like the following:
"emailSettings": [
{
"emailType": "DIGEST",
"frequency": "WEEKLY"
},
{
"emailType": "UNREAD_REVIEW_NOTIFICATION",
"frequency": "DAILY"
}
]
By understanding these enrollment setting, you can ensure your users receive the right information at the right time.