Messaging platforms vs. Messaging applications
- Messaging platforms: Ideal for structured, workplace communication. Use these to notify teams or users in collaborative environments. Examples: Slack, Teams
- Messaging apps: Best for consumer-facing messaging. Engage users directly through personal or group chats. Examples: WhatsApp, Telegram, Discord
Looking to build agents using chat provider integrations? Check out the agents documentation for more information.
How chat delivery works in Novu
Here’s the typical flow for sending a chat notification through Novu:1
Add a chat provider
Start by adding a chat provider in the integration store on your Novu dashboard.You can connect one or more integrations for different or even the same providers, for example, multiple Slack workspaces.To learn how to add a chat provider, refer to the setup guide for that provider.
2
Add the chat channel to your workflow
Next, include a Chat step in your workflow.This step defines when and how a chat message should be sent as part of your notification workflow.
3
Define the chat content
Within the Chat step editor, write the message body.The editor supports dynamic data for personalized and contextual messages.
4
Store subscriber credentials
Each subscriber must have valid chat credentials, such as awebhookUrl or unique identifier, to receive chat notifications.You can store or update these credentials using the Novu dashboard, API, or SDKs.
5
Trigger the workflow
Trigger the workflow using your application code. Novu automatically:- Resolves the subscriber.
- Retrieves the correct credentials, for example, the
webhookUrl. - Selects the appropriate provider.
- Renders the message.
- Delivers it to the chat platform.
Configuring chat providers
When you add a chat provider in the Integration Store, you’ll configure credentials specific to that provider.Provider authentication
You may need to provide credentials specific to your chat provider, such as an API key, Client ID, or Client Secret. However, some providers, like Discord, may not require any global credentials to be set in the Integration Store. Each provider has different requirements.For detailed setup guides for each provider integration, refer to the supported chat providers list at the end of this page .
How to manages Chat credentials
The chat channel works by storing specific credentials for each subscriber. This credential is typically awebhookUrl that tells Novu where to send a message for that specific subscriber.
Before triggering a chat notification, you must update the subscriber with this webhookUrl.
Storing subscriber credentials
Use thesubscribers.credentials.update method to store the webhookUrl for a specific subscriber and provider.
Checkout the API reference for more details.
- Node.js
- Python
- Go
- PHP
- .NET
- Java
- cURL
Provider content overrides
The Chat step body is plain text. When you need a platform’s richer message format, such as Slack Block Kit, configure a provider content override on the Chat step in the workflow editor. An override is a JSON object that Novu merges into the request it sends to that provider. It is saved on the step, so it is versioned and promoted between environments with the rest of the workflow, and it applies to every trigger without any change to your trigger call.Provider content overrides in the workflow editor are rolling out gradually and may not be available on your Chat step yet. Trigger overrides work regardless.
Slack is schema-backed
Slack overrides are validated against thechat.postMessage argument set, and the editor autocompletes field names as you type — including inside blocks[].elements[]. The editor validates the JSON and flags unsupported fields.
Configure Slack overrides
Field-by-field reference, a Block Kit example with Liquid variables, and the incoming-webhook caveats.
WhatsApp is schema-backed
WhatsApp Business overrides are validated against WhatsApp Cloud API Message fields such astype, text, template, interactive, media, and context. The editor autocompletes supported field names, validates the JSON, and flags unsupported fields.
Configure WhatsApp overrides
How to save a schema-backed WhatsApp override on the Chat step, with a text example and Liquid fallback notes.
Every other chat provider is a raw passthrough
For all other chat providers, the override is an unvalidated escape hatch. Whatever JSON object you save is merged into that provider’s outbound payload as-is. That means:- No validation. Novu does not check field names, types, or nesting. A typo reaches the provider’s API unchanged. Depending on the provider it either fails the delivery, which you will see in the Activity feed, or is silently ignored.
- No autocomplete. There is no schema to suggest from.
- The shape is the provider’s contract, not Novu’s. Write the object against the provider’s own API reference. If the provider changes its API, your override has to change with it.
Liquid, fallback, and precedence
Override values may contain Liquid templates, which Novu compiles at send time. Where a provider has a primary content field —text for Slack, text.body for WhatsApp — and your override omits it, Novu fills it with the rendered Chat step body.
When the same field is set both on the step and at trigger time, the trigger value wins, and arrays replace rather than merge. See provider override scopes.
Supported providers
Here are the chat providers that are currently supported by Novu. Select any provider to see its detailed setup guide.Discord
Learn how to use the Discord provider to send chat notifications using Novu.
LINE
Learn how to use the LINE Messaging API provider to send chat notifications using Novu.
Mattermost
Learn how to use the Mattermost provider to send chat notifications using Novu.
Microsoft Teams
Learn how to use the Microsoft Teams provider to send chat notifications using Novu.
Slack
Learn how to use the Slack provider to send chat notifications using Novu.
Telegram
Learn how to use the Telegram provider for chat notifications and agent conversations.
WhatsApp Business
Learn how to use the WhatsApp Business provider to send chat notifications using Novu.
Zulip
Learn how to use the Zulip provider to send chat notifications using Novu.