Workflow groups
Update workflow group
workflow group was previously named notification group
PATCH
/v1/notification-groups/{id}
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.notificationGroups.update("notificationGroupId", { name: "Changelog Updates"});
{
data: data
}
Path Parameters
idrequired
string
Body
application/json
namerequired
string
Response
200 - application/json
data
object
import { Novu, TemplateVariableTypeEnum, FilterPartTypeEnum, StepTypeEnum } from '@novu/node';
const novu = new Novu('<NOVU_API_KEY>');
await novu.notificationGroups.update("notificationGroupId", { name: "Changelog Updates"});
{
data: data
}