Modify notification template

put

/iam/governance/selfservice/api/v1/notification/template/{id}

Modifies an existing notification template.

Request

Supported Media Types
Path Parameters
Query Parameters
  • Modifies the status of notification template with the specific id.
    Allowed Values: [ "Enabled", "Disabled" ]
Body ()
Template details to modify an already existing notification template.
Root Schema : ModifyNotificationTemplateBody
Type: object
Show Source
Nested Schema : localTemplateCollection
Type: array
Show Source
Nested Schema : items
Type: object
Show Source
Nested Schema : LocaleTemplateBody
Type: object
Show Source
Back to Top

Response

204 Response

successful operation.
Body ()
Root Schema : ReturnedStatus
Type: object
Show Source

400 Response

Invalid input.
Back to Top

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
}
Back to Top