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
Path Parameters
  • Notification template id for which locale needs to be added.
Query Parameters
Body ()
Locale details for new locale template to be created.
Root Schema : LocaleTemplateBody
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

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