Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

Description

Delete an email notification template.

Package Details

Interface

IEmailNotificationManager

Syntax

Task DeleteNotification(string templateName);

Returns

Task

API Endpoint

DELETE

/api/v1/notification-template/{templateName}

Parameters

Parameter

Description

Parameter Type

templateName

Name of the template to be deleted

Path

Returns

200 OK - When successful

400 Bad Request - Unable to delete the template

Example

const string templateName = "your template name";
await emailNotificationManager.DeleteNotification(templateName);
  • No labels