Workflows
Delete workflow
Workflow was previously named notification template
DELETE
/v1/workflows/{workflowId}
Authorization*
openapi: post /v1/workflows
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.delete("workflowId");
{
"data": true
}
Path Parameters
workflowIdrequired
string
Response
200 - application/json
datarequired
boolean
import { Novu, TemplateVariableTypeEnum, FilterPartTypeEnum, StepTypeEnum } from '@novu/node';
const novu = new Novu('<NOVU_API_KEY>');
await novu.notificationTemplates.delete("workflowId");
{
"data": true
}