Workflows
Get workflows
Workflows were previously named notification templates
GET
/v1/workflows
Authorization*
Please ensure there is a space between ApiKey
and your Api key.
E.g ApiKey 18d2e625f05d80e
import { Novu, TemplateVariableTypeEnum, FilterPartTypeEnum, StepTypeEnum } from '@novu/node';
const novu = new Novu('<NOVU_API_KEY>');
await novu.notificationTemplates.getAll({
page: 0, // optional
limit: 20 // optional
});
{
data: data
}
Query Parameters
page
number
limit
Default: "10"number
Response
200 - application/json
data
object
import { Novu, TemplateVariableTypeEnum, FilterPartTypeEnum, StepTypeEnum } from '@novu/node';
const novu = new Novu('<NOVU_API_KEY>');
await novu.notificationTemplates.getAll({
page: 0, // optional
limit: 20 // optional
});
{
data: data
}