docs/platform/workflow/trigger-workflow.mdx
Triggering a workflow starts the execution of a notification pipeline in Novu. A workflow is triggered when an event is sent to Novu.
When a workflow is triggered, Novu resolves the target subscribers, evaluates workflow logic, and executes each configured step to deliver notifications across the selected channels. Trigger requests can include payload data, context, or target a topic, allowing you to control both who receives the notification and what data is available during execution.
<Note> You can test a workflow directly from the workflow editor in the Novu dashboard before triggering it from your application. This allows you to validate step configuration and notification content for a specific subscriber. </Note><Prompt description="Integrate a workflow trigger in my app" icon="zap" actions={["copy", "cursor"]}> You are an AI agent specialized in integrating Novu workflow triggers into applications. Your primary goal is to seamlessly embed workflow trigger calls into existing codebases while maintaining the host application's design patterns and architecture.
Critical: Write clean, minimal code implementation only. Do not create documentation, guides, README files, or markdown files. Do not add console logs or verbose error handling.
Official Documentation:
Workflow ID: welcome-email Novu API Endpoint: https://api.novu.co/v1/events/trigger
Subscriber Information:
Expected Payload Fields:
Replace YOUR_WORKFLOW_ID, YOUR_SUBSCRIBER_ID, and payload fields with values from your Novu dashboard.
Novu provides official server-side SDKs for TypeScript/Node.js (@novu/api), Python (novu-py), Go (novu-go), PHP (novuhq/novu), .NET (Novu), and Java (co.novu:novu-java). Use the SDK that matches the project's language. Fall back to the REST API only when no SDK fits the stack.
Example with the Node.js SDK — see the Trigger Event API section below for the same trigger pattern in Python, Go, PHP, .NET, Java, and cURL (replace workflow_identifier with your workflow ID, such as welcome-email).
See https://docs.novu.co/platform/sdks/server/typescript for SDK installation and usage details.
Workflows in Novu are triggered by sending events to the Event API. An event represents an action in your system, for example, an order created or a comment added and is mapped to a workflow using the workflow’s trigger identifier.
When you trigger an event, you specify:
At a minimum, triggering a workflow requires the workflow trigger identifier and a subscriber identifier.
<Tabs> <Tab title="Node.js"> ```ts import { Novu } from "@novu/api";const novu = new Novu({ secretKey: "<YOUR_SECRET_KEY_HERE>" });
await novu.trigger({ workflowId: "workflow_identifier", to: [{ subscriberId: "string" }], });
</Tab>
<Tab title="Python">
```python
import os
import novu_py
from novu_py import Novu
with Novu(secret_key=os.getenv("NOVU_SECRET_KEY", "")) as novu:
novu.trigger(trigger_event_request_dto=novu_py.TriggerEventRequestDto(
workflow_id="workflow_identifier",
to={"subscriber_id": "string"},
))
novugo "github.com/novuhq/novu-go"
"github.com/novuhq/novu-go/models/components"
)
s := novugo.New(novugo.WithSecurity(os.Getenv("NOVU_SECRET_KEY")))
res, err := s.Trigger(context.Background(), components.TriggerEventRequestDto{ WorkflowID: "workflow_identifier", To: components.CreateToSubscriberPayloadDto(components.SubscriberPayloadDto{ SubscriberID: "string", }), }, nil)
</Tab>
<Tab title="PHP">
```php
use novu;
use novu\Models\Components;
$sdk = novu\Novu::builder()
->setSecurity('<YOUR_SECRET_KEY_HERE>')
->build();
$sdk->trigger(
triggerEventRequestDto: new Components\TriggerEventRequestDto(
workflowId: 'workflow_identifier',
to: new Components\SubscriberPayloadDto(subscriberId: 'string'),
),
);
var sdk = new NovuSDK(secretKey: "<YOUR_SECRET_KEY_HERE>");
await sdk.TriggerAsync(triggerEventRequestDto: new TriggerEventRequestDto() { WorkflowId = "workflow_identifier", To = To.CreateStr("string"), });
</Tab>
<Tab title="Java">
```java
import co.novu.Novu;
import co.novu.models.components.*;
Novu novu = Novu.builder()
.secretKey("<YOUR_SECRET_KEY_HERE>")
.build();
novu.trigger()
.body(TriggerEventRequestDto.builder()
.workflowId("workflow_identifier")
.to(To2.of("string"))
.build())
.call();
Once the event is received, Novu executes the workflow, evaluates step conditions, resolves variables, and delivers notifications across the configured channels.
From here, you can extend event triggering by attaching context data or targeting multiple subscribers using topics.
You can attach context data when triggering a workflow using the Event API. Context can be referenced from existing contexts created in the Novu dashboard by providing the context type and identifier or defined inline at trigger time. Any context passed with the event is available to all downstream steps and channel templates during workflow execution.
Context data is passed using the context object in the trigger request.
const novu = new Novu({ secretKey: "<YOUR_SECRET_KEY_HERE>" });
await novu.trigger({ workflowId: "workflow_identifier", to: [{ subscriberId: "string" }], context: { context_type: "context_identifier", region: "us-east-1", app: "dashboard" } });
</Tab>
<Tab title="Python">
```python
import os
import novu_py
from novu_py import Novu
with Novu(secret_key=os.getenv("NOVU_SECRET_KEY", "")) as novu:
novu.trigger(trigger_event_request_dto=novu_py.TriggerEventRequestDto(
workflow_id="workflow_identifier",
to={"subscriber_id": "string"},
context={
"context_type": "context_identifier",
"region": "us-east-1",
"app": "dashboard",
},
))
novugo "github.com/novuhq/novu-go"
"github.com/novuhq/novu-go/models/components"
)
s := novugo.New(novugo.WithSecurity(os.Getenv("NOVU_SECRET_KEY")))
res, err := s.Trigger(context.Background(), components.TriggerEventRequestDto{ WorkflowID: "workflow_identifier", To: components.CreateToSubscriberPayloadDto(components.SubscriberPayloadDto{ SubscriberID: "string", }), Context: map[string]any{ "context_type": "context_identifier", "region": "us-east-1", "app": "dashboard", }, }, nil)
</Tab>
<Tab title="PHP">
```php
use novu;
use novu\Models\Components;
$sdk = novu\Novu::builder()
->setSecurity('<YOUR_SECRET_KEY_HERE>')
->build();
$sdk->trigger(
triggerEventRequestDto: new Components\TriggerEventRequestDto(
workflowId: 'workflow_identifier',
to: new Components\SubscriberPayloadDto(subscriberId: 'string'),
context: [
'context_type' => 'context_identifier',
'region' => 'us-east-1',
'app' => 'dashboard',
],
),
);
var sdk = new NovuSDK(secretKey: "<YOUR_SECRET_KEY_HERE>");
await sdk.TriggerAsync(triggerEventRequestDto: new TriggerEventRequestDto() { WorkflowId = "workflow_identifier", To = To.CreateStr("string"), Context = new Dictionary<string, object>() { { "context_type", "context_identifier" }, { "region", "us-east-1" }, { "app", "dashboard" }, }, });
</Tab>
<Tab title="Java">
```java
import co.novu.Novu;
import co.novu.models.components.*;
import java.util.Map;
Novu novu = Novu.builder()
.secretKey("<YOUR_SECRET_KEY_HERE>")
.build();
novu.trigger()
.body(TriggerEventRequestDto.builder()
.workflowId("workflow_identifier")
.to(To2.of("string"))
.context(Map.ofEntries(
Map.entry("context_type", TriggerEventRequestDtoContextUnion.of("context_identifier")),
Map.entry("region", TriggerEventRequestDtoContextUnion.of("us-east-1")),
Map.entry("app", TriggerEventRequestDtoContextUnion.of("dashboard"))))
.build())
.call();
Once you’ve created topics and added subscribers, you can trigger workflows to those subscribers in bulk. Triggering a workflow to a topic is Novu’s primary mechanism for broadcasting notifications to large audiences with a single API call.
When you trigger a workflow using a topic key, Novu performs a fan-out: it resolves all subscribers in the topic and executes the workflow independently for each subscriber.
<Note> To learn how to create and manage Topics, see the [Topics API reference](/api-reference/topics/topic-schema). </Note>The most common use case is sending a notification to all subscribers within a single topic. This is suitable for announcements, incident updates, or targeted broadcasts.
To trigger a workflow to a topic, set the to field with type: "Topic" and provide the corresponding topicKey.
const novu = new Novu({ secretKey: "<YOUR_SECRET_KEY_HERE>", });
await novu.trigger({ workflowId: "workflow_identifier", to: { type: "Topic", topicKey: "topic_key" }, });
</Tab>
<Tab title="Python">
```python
import os
import novu_py
from novu_py import Novu
with Novu(secret_key=os.getenv("NOVU_SECRET_KEY", "")) as novu:
novu.trigger(trigger_event_request_dto=novu_py.TriggerEventRequestDto(
workflow_id="workflow_identifier",
to={"type": "Topic", "topic_key": "topic_key"},
))
novugo "github.com/novuhq/novu-go"
"github.com/novuhq/novu-go/models/components"
)
s := novugo.New(novugo.WithSecurity(os.Getenv("NOVU_SECRET_KEY")))
res, err := s.Trigger(context.Background(), components.TriggerEventRequestDto{ WorkflowID: "workflow_identifier", To: components.CreateToTopicPayloadDto(components.TopicPayloadDto{ Type: components.TriggerRecipientsTypeEnumTopic, TopicKey: "topic_key", }), }, nil)
</Tab>
<Tab title="PHP">
```php
use novu;
use novu\Models\Components;
$sdk = novu\Novu::builder()
->setSecurity('<YOUR_SECRET_KEY_HERE>')
->build();
$sdk->trigger(
triggerEventRequestDto: new Components\TriggerEventRequestDto(
workflowId: 'workflow_identifier',
to: new Components\TopicPayloadDto(
topicKey: 'topic_key',
type: Components\TriggerRecipientsTypeEnum::Topic,
),
),
);
var sdk = new NovuSDK(secretKey: "<YOUR_SECRET_KEY_HERE>");
await sdk.TriggerAsync(triggerEventRequestDto: new TriggerEventRequestDto() { WorkflowId = "workflow_identifier", To = To.CreateTopicPayloadDto(new TopicPayloadDto() { Type = TriggerRecipientsTypeEnum.Topic, TopicKey = "topic_key", }), });
</Tab>
<Tab title="Java">
```java
import co.novu.Novu;
import co.novu.models.components.*;
Novu novu = Novu.builder()
.secretKey("<YOUR_SECRET_KEY_HERE>")
.build();
novu.trigger()
.body(TriggerEventRequestDto.builder()
.workflowId("workflow_identifier")
.to(To2.of(TopicPayloadDto.builder()
.type(TriggerRecipientsTypeEnum.TOPIC)
.topicKey("topic_key")
.build()))
.build())
.call();
You can broadcast a notification to multiple topics by passing an array to the to field. This is useful when your audience spans multiple groups, such as notifying both paying-customers and beta-testers.
Novu automatically de-duplicates subscribers. If a subscriber belongs to more than one of the specified topics, they will receive the notification only once.
<Tabs> <Tab title="Node.js"> ```ts import { Novu } from "@novu/api"const novu = new Novu({ secretKey: "<YOUR_SECRET_KEY_HERE>", });
await novu.trigger({ workflowId: "workflow_identifier", to: [ { type: "Topic", topicKey: "topic_key_1" }, { type: "Topic", topicKey: "topic_key_2" } ] });
</Tab>
<Tab title="Python">
```python
import os
import novu_py
from novu_py import Novu
with Novu(secret_key=os.getenv("NOVU_SECRET_KEY", "")) as novu:
novu.trigger(trigger_event_request_dto=novu_py.TriggerEventRequestDto(
workflow_id="workflow_identifier",
to=[
{"type": "Topic", "topic_key": "topic_key_1"},
{"type": "Topic", "topic_key": "topic_key_2"},
],
))
novugo "github.com/novuhq/novu-go"
"github.com/novuhq/novu-go/models/components"
)
s := novugo.New(novugo.WithSecurity(os.Getenv("NOVU_SECRET_KEY")))
res, err := s.Trigger(context.Background(), components.TriggerEventRequestDto{ WorkflowID: "workflow_identifier", To: components.CreateToArrayOfTo1([]components.To1{ components.CreateTo1TopicPayloadDto(components.TopicPayloadDto{ Type: components.TriggerRecipientsTypeEnumTopic, TopicKey: "topic_key_1", }), components.CreateTo1TopicPayloadDto(components.TopicPayloadDto{ Type: components.TriggerRecipientsTypeEnumTopic, TopicKey: "topic_key_2", }), }), }, nil)
</Tab>
<Tab title="PHP">
```php
use novu;
use novu\Models\Components;
$sdk = novu\Novu::builder()
->setSecurity('<YOUR_SECRET_KEY_HERE>')
->build();
$sdk->trigger(
triggerEventRequestDto: new Components\TriggerEventRequestDto(
workflowId: 'workflow_identifier',
to: [
new Components\TopicPayloadDto(
topicKey: 'topic_key_1',
type: Components\TriggerRecipientsTypeEnum::Topic,
),
new Components\TopicPayloadDto(
topicKey: 'topic_key_2',
type: Components\TriggerRecipientsTypeEnum::Topic,
),
],
),
);
var sdk = new NovuSDK(secretKey: "<YOUR_SECRET_KEY_HERE>");
await sdk.TriggerAsync(triggerEventRequestDto: new TriggerEventRequestDto() { WorkflowId = "workflow_identifier", To = To.CreateArrayOfTo1(new List<To1> { To1.CreateTopicPayloadDto(new TopicPayloadDto() { Type = TriggerRecipientsTypeEnum.Topic, TopicKey = "topic_key_1", }), To1.CreateTopicPayloadDto(new TopicPayloadDto() { Type = TriggerRecipientsTypeEnum.Topic, TopicKey = "topic_key_2", }), }), });
</Tab>
<Tab title="Java">
```java
import co.novu.Novu;
import co.novu.models.components.*;
import java.util.List;
Novu novu = Novu.builder()
.secretKey("<YOUR_SECRET_KEY_HERE>")
.build();
novu.trigger()
.body(TriggerEventRequestDto.builder()
.workflowId("workflow_identifier")
.to(To2.of(List.of(
To1.of(TopicPayloadDto.builder()
.type(TriggerRecipientsTypeEnum.TOPIC)
.topicKey("topic_key_1")
.build()),
To1.of(TopicPayloadDto.builder()
.type(TriggerRecipientsTypeEnum.TOPIC)
.topicKey("topic_key_2")
.build()))))
.build())
.call();
When a workflow is triggered to a topic, all subscribers in that topic are included by default. You can exclude specific subscribers from receiving the notification for that trigger by using the exclude field.
This exclusion applies only to the current trigger request and does not modify the topic membership.
<Tabs> <Tab title="Node.js"> ```ts import { Novu } from "@novu/api"const novu = new Novu({ secretKey: "<YOUR_SECRET_KEY_HERE>", });
await novu.trigger({ workflowId: "workflow_identifier", to: [{ type: "Topic", topicKey: "topic_key", exclude: ["subscriber-id"] }], });
</Tab>
<Tab title="Python">
```python
import os
import novu_py
from novu_py import Novu
with Novu(secret_key=os.getenv("NOVU_SECRET_KEY", "")) as novu:
novu.trigger(trigger_event_request_dto=novu_py.TriggerEventRequestDto(
workflow_id="workflow_identifier",
to=[{
"type": "Topic",
"topic_key": "topic_key",
"exclude": ["subscriber-id"],
}],
))
novugo "github.com/novuhq/novu-go"
"github.com/novuhq/novu-go/models/components"
)
s := novugo.New(novugo.WithSecurity(os.Getenv("NOVU_SECRET_KEY")))
res, err := s.Trigger(context.Background(), components.TriggerEventRequestDto{ WorkflowID: "workflow_identifier", To: components.CreateToArrayOfTo1([]components.To1{ components.CreateTo1TopicPayloadDto(components.TopicPayloadDto{ Type: components.TriggerRecipientsTypeEnumTopic, TopicKey: "topic_key", Exclude: []string{"subscriber-id"}, }), }), }, nil)
</Tab>
<Tab title="PHP">
```php
use novu;
use novu\Models\Components;
$sdk = novu\Novu::builder()
->setSecurity('<YOUR_SECRET_KEY_HERE>')
->build();
$sdk->trigger(
triggerEventRequestDto: new Components\TriggerEventRequestDto(
workflowId: 'workflow_identifier',
to: [
new Components\TopicPayloadDto(
topicKey: 'topic_key',
type: Components\TriggerRecipientsTypeEnum::Topic,
exclude: ['subscriber-id'],
),
],
),
);
var sdk = new NovuSDK(secretKey: "<YOUR_SECRET_KEY_HERE>");
await sdk.TriggerAsync(triggerEventRequestDto: new TriggerEventRequestDto() { WorkflowId = "workflow_identifier", To = To.CreateArrayOfTo1(new List<To1> { To1.CreateTopicPayloadDto(new TopicPayloadDto() { Type = TriggerRecipientsTypeEnum.Topic, TopicKey = "topic_key", Exclude = new List<string> { "subscriber-id" }, }), }), });
</Tab>
<Tab title="Java">
```java
import co.novu.Novu;
import co.novu.models.components.*;
import java.util.List;
Novu novu = Novu.builder()
.secretKey("<YOUR_SECRET_KEY_HERE>")
.build();
novu.trigger()
.body(TriggerEventRequestDto.builder()
.workflowId("workflow_identifier")
.to(To2.of(List.of(
To1.of(TopicPayloadDto.builder()
.type(TriggerRecipientsTypeEnum.TOPIC)
.topicKey("topic_key")
.exclude(List.of("subscriber-id"))
.build()))))
.build())
.call();