Modify notification template
put
/iam/governance/selfservice/api/v1/notification/template/{id}
Modifies an existing notification template.
Request
Supported Media Types
- application/json
Path Parameters
-
id: number
Notification template id.
Query Parameters
-
status(optional): string
Modifies the status of notification template with the specific id.Allowed Values:
[ "Enabled", "Disabled" ]
Template details to modify an already existing notification template.
Root Schema : ModifyNotificationTemplateBody
Type:
Show Source
object
-
description(optional):
string
Description of notification template.
-
eventname(optional):
string
Event Name of notification template.
-
localTemplateCollection(optional):
array localTemplateCollection
Nested Schema : LocaleTemplateBody
Type:
Show Source
object
-
contenttype(optional):
string
Content type of locale template.
-
encoding(optional):
string
Encoding of locale template.
-
longmessage(optional):
string
Long message of locale template.
-
shortmessage(optional):
string
Short message of locale template.
-
subject(optional):
string
Subject of locale template.
Response
204 Response
successful operation.
Root Schema : ReturnedStatus
Type:
Show Source
object
-
status(optional):
number
Status of notification template.
400 Response
Invalid input.
Examples
This example retrieves list of all entity physical type and names. The information shown here is against a pseudo system and serves as a prototype.
cURL Example
curl -i -X PUT -u username:password \ --header 'Content-Type: application/json' \ --header 'X-Requested-By: <anyvalue>' \ --data-raw '{"localTemplateCollection":{"en_US":{"subject":"demo1","shortmessage":"demo1","longmessage":"demo1","contenttype":"text/plain","encoding":"UTF-8"}},"eventname":"EndDateNotificationEvent","templatename":"DemoTemplate","description":"demo1"}' \ 'http://pseudo.com/iam/governance/selfservice/api/v1/notification/template/41'
Example of GET Response Body
The following example shows the contents of the response body in JSON format.
{ "status":61662 }