API Reference
- API Overview
- API Rate Limiting
- Events
- Subscribers
- Topics
- Notification
- Workflows
- Workflow overrides
- Workflow groups
- Integrations
- Layouts
- Environments
- Changes
- Execution details
- Feeds
- Tenants
- Organizations
- Messages
Changes
Get changes
Copy
import { Novu } from '@novu/node';
const novu = new Novu('<NOVU_SECRET_KEY>');
await novu.changes.get();
Copy
{
totalCount: 0,
data: [data],
pageSize: 0,
page: 0
}
Enter your API key in the Authorization
field like the example shown below:
E.g ApiKey 18d2e625f05d80e
Copy
import { Novu } from '@novu/node';
const novu = new Novu('<NOVU_SECRET_KEY>');
await novu.changes.get();
Copy
{
totalCount: 0,
data: [data],
pageSize: 0,
page: 0
}
Was this page helpful?
Copy
import { Novu } from '@novu/node';
const novu = new Novu('<NOVU_SECRET_KEY>');
await novu.changes.get();
Copy
{
totalCount: 0,
data: [data],
pageSize: 0,
page: 0
}
Assistant
Responses are generated using AI and may contain mistakes.