Add new locale to a notification template
post
/iam/governance/selfservice/api/v1/notification/template/{id}/locale
Adds a new locale to an already existing notification template by providing language and country details as URL parameters.
Request
Supported Media Types
- application/json
Path Parameters
-
id: number
Notification template id for which locale needs to be added.
Query Parameters
-
country: string
Country name for locale template.
-
lang: string
Language for locale template.
Locale details for new locale template to be created.
Root 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
201 Response
successful operation.
Root Schema : ReturnedTemplateId
Type:
Show Source
object
-
templateid(optional):
number
Template id of notification template.
400 Response
Invalid input.
Examples
The following example shows how to retrieve the summary of all job executions within a 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 PUT -u username:password \ --header 'Content-Type: application/json' \ --header 'X-Requested-By: <anyvalue>' \ --data-raw '{"subject":"demo","shortmessage":"demo","longmessage":"demo","contenttype":"text/plain","encoding":"UTF-8"}' 'http://pseudo.com:14000/iam/governance/selfservice/api/v1/notification/template/41/locale?lang=pt&country=BR'
Example of Response Body
The following example shows the JSON response for a request to retrieve the summary of all job executions within a time range:
{ "templateid":521 }