Fetch notification template

get

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

Fetches a particular notification template with the specified id.

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

successful operation.
Body ()
Root Schema : FetchNotificationTemplate
Type: object
Show Source
Nested Schema : localTemplateCollection
Type: array
Show Source
Nested Schema : items
Type: object
Show Source
Nested Schema : locale
Type: object
Show Source

400 Response

Invalid input.
Back to Top

Examples

The following example shows how to retrieve a paginated list of all execution history within a specified time range by submitting the GET request using cURL. The information shown here is against a pseudo system and serves as a prototype.

cURL Example

curl -i -X GET -u username:password \
--header 'Content-Type: application/json' \
'http://pseudo.com:14000/iam/governance/selfservice/api/v1/notification/template/41'

Example of Response Body

The following example shows the JSON response for a request to retrieve a paginated list of all execution history within a specified time range:

{
   "localTemplateCollection":{
      "en_US":{
         "subject":"demo",
         "shortmessage":"demo",
         "longmessage":"demo",
         "contenttype":"text/plain",
         "encoding":"UTF-8"
      }
   },
   "eventname":"EndDateNotificationEvent",
   "templatename":"DemoTemplate",
   "description":"DemoDescription",
   "createuser":"1",
   "status":"Enabled"
}
Back to Top