Understanding tenants
Tenants (previously named as brands) represents a segment that user belongs to. It can be organizations, teams within an organization, projects, workspaces, subsidiary companies or different product lines in the same business, and so on. Tenants in SuprSend are used to design custom notification experience based on these segments.Possible customizations and usage
Each tenant can have its own properties, preferences, vendors, and custom template design or content. You can use tenants to:- White-label notifications — Send notifications to your customers’ end users with their branding, colors, logos, and social links. One shared template;
$brand.*variables are replaced with tenant-specific values at runtime. - Set admin-level preference defaults — Define default notification preferences at the account or project level that apply to all users within it.
- Per-tenant user preferences — Let users have different notification preferences for each tenant they belong to. For example, a user might mute Slack notifications for one project but keep them on for another. Just pass
tenant_idwhile saving per-tenant preferences for a user. - Route via tenant vendors — Send notifications through your customers’ own email domain, SMS sender ID, or WhatsApp provider instead of yours. If no tenant vendor is set, the default vendor is used.
- Scope in-app feeds — Show a separate notification inbox per tenant so users only see what’s relevant to their current context. Messages are tagged with
tenant_id; badge counts are scoped automatically. - Block notification categories — Block certain paid features / modules or channels for a tenant as they have not subscribed to them.
- Custom template content — Tenants can modify template content or have the option to add new notifications for their end users. (coming soon)
- Per-tenant user properties or channel identities — Users can have different roles per project or have different push tokens for different applications of your product. (coming soon)
Every workspace includes a
default tenant that represents your own organization. If no tenant_id is passed in a workflow or event trigger, the default tenant’s properties are applied.How tenants work
By default, tenancy is a trigger-time concept. You passtenant_id at trigger time and SuprSend applies that tenant’s configuration at runtime to your notifications.
When a workflow is triggered with a tenant_id, SuprSend will:
- Resolve the tenant’s branding properties and replace
$tenant.*variable in workflows or$brand.*variable in your templates with tenant properties. - Evaluate tenant-level admin preferences and default preference settings.
- Apply per-user, per-tenant preferences if the user has them set for that tenant.
- Route the notification through the tenant’s configured vendor, falling back to the default vendor if none is set. If no tenant vendor is set, the default vendor is used.
- Tag the message with the
tenant_idso in-app inbox feeds can be scoped per tenant.
Real-world examples
Multi-tenant B2B2X applications
You send notifications to your customers’ end users — each customer wants their own branding and vendors(email domain, SMS sender ID, etc.).In SuprSend: Each customer is a tenant. Store their logo, colors, and social links as tenant properties. Override tenant vendors to send from their email domain, SMS sender ID, or WhatsApp number.
Admin preferences in SaaS Applications
You are a SAAS product and your customers’ admins want to control which notifications reach their internal team, on which channels and which categories are relevant to which roles in their organization.In SuprSend: Each customer org is a tenant. Admins set tenant default preferences to control categories and channels. Use tags on categories to map to roles, then filter what each user sees based on their role.
Project Management App with per-project preference settings
Your app has multi-level preference settings: global preferences, project-level defaults, and per-user overrides. Preferences cascade: global → project → user.In SuprSend: Each customer will be mapped to workspaces. Global Preferences are set as category level defaults. Each project is a tenant. Set category-level defaults as tenant preferences — they cascade down to users within that project. Users can then override with their own per-tenant preferences.
Multiple apps with per-app user identities
Your company has multiple product lines and the same user has different push tokens, Slack tokens, or email addresses across each app. Notifications need to route to the right identity for the right app.In SuprSend: Each app or product line is a tenant. Store tenant-specific channel identities (push tokens, Slack tokens, email) per user so notifications always deliver to the correct app. This feature is coming soon.
FAQ
Do I need to assign users to tenants?
Do I need to assign users to tenants?
Not necessarily. You can simply pass
tenant_id at trigger time and SuprSend will apply that tenant’s configuration.Can a user belong to multiple tenants?
Can a user belong to multiple tenants?
Right now, there is no explicit relation between a user and a tenant. Tenant is a trigger-time concept, which applies per-tenant user preferences, tenant specific branding or vendor routing at the time of sending. We’re working on a feature to allow users to be associated with multiple tenants. Here, user’s channel identities or properties can be different for each tenant.
What happens if I don't pass a tenant_id?
What happens if I don't pass a tenant_id?
The
default tenant is used. Every workspace has one, representing your organization’s own branding and settings.Is there a limit on the number of tenants?
Is there a limit on the number of tenants?
No. You can create as many tenants as your application requires.
Can I use different workflows per tenant?
Can I use different workflows per tenant?
You can, but it’s usually not needed. Use
$tenant.* variables, per-tenant preferences, and step conditions to customize behavior within a single shared workflow. This keeps your notification logic manageable as you scale.What if two business lines have completely different users and notifications?
What if two business lines have completely different users and notifications?
Use separate workspaces instead of tenants. Workspaces provide full isolation of users, workflows, templates, vendors and other data points.
Will all users in a tenant receive a notification when I trigger with that tenant_id?
Will all users in a tenant receive a notification when I trigger with that tenant_id?
No. Passing
tenant_id in a workflow trigger does not send the notification to all users in that tenant. It only applies that tenant’s configuration (branding, preferences, vendors) to the notification. You still need to specify the recipients explicitly in your trigger call.Can I update a tenant's branding and use custom properties in templates?
Can I update a tenant's branding and use custom properties in templates?
Yes. You can update tenant properties (logo, colors, social links, and any custom properties) at any time via the dashboard, SDKs, or API. Use
$brand.<property> variables in your templates to render them dynamically. See Tenant Templates for details.Is multi-tenancy available on all plans?
Is multi-tenancy available on all plans?
Multi-tenancy is available on enterprise plan and as add-on for business plan.
Can I filter the in-app inbox by tenant and additional criteria like project or tags?
Can I filter the in-app inbox by tenant and additional criteria like project or tags?
Next steps
Tenant Quick Start
Create a tenant and send your first tenant-scoped notification.
Tenant Templates
Use tenant variables and pre-built components in your templates to customize the look and feel of your notifications per-tenant.
Tenant Workflows
Trigger workflows for a tenant to apply tenant level customization in notifications.
Tenant Preferences
Set admin controls and default opt-in/opt-out per tenant.
Tenant Vendors
Route notifications through each tenant’s own email/SMS providers.