Delete locale from notification template

delete

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

Deletes a locale from 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 removed.
Query Parameters
Back to Top

Response

201 Response

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

400 Response

Invalid input.
Back to Top

Examples

This example retrieves list of entities to be exported. The information shown here is against a pseudo system and serves as a prototype.

cURL Example

curl -i -X DELETE -u username:password \
--header 'X-Requested-By: <anyvalue>' \
'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 contents of the response body in JSON format.

{
   "status":0
}
Back to Top