Create new notification template

post

/iam/governance/selfservice/api/v1/notification/template

Creates a new notification template in OIG.

Request

Supported Media Types
Body ()
Template details for new notification template to be created.
Root Schema : CreateNotificationTemplateBody
Type: object
Show Source
Back to Top

Response

201 Response

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

400 Response

Invalid input.
Back to Top

Examples

This example retrieves account information for a given account. The information shown here is against a pseudo system and serves as a prototype.

cURL Example

curl -i -X POST -u username:password \
--header 'Content-Type: application/json' \
--header 'X-Requested-By: <anyvalue>' \
--data-raw '{"eventname":"EndDateNotificationEvent","templatename":"DemoTemplate","description":"DemoDescription"}' \
'http://psuedo.com:14000/iam/governance/selfservice/api/v1/notification/template'

Example of GET Response Body

The following example shows the contents of the response body in JSON format.

{
   "templateid":41
}
Back to Top