Find all locale specific templates

get

/iam/governance/selfservice/api/v1/notification/search/adv

Retrieves all locale specific templates by providing the template name or event name or subject or locale as URL parameters. Sorting and pagination are supported.

Request

Query Parameters
Back to Top

Response

Supported Media Types

200 Response

successful operation.
Body ()
Root Schema : schema
Type: array
Show Source
Nested Schema : SearchResult
Type: object
Show Source

400 Response

Invalid input.
Back to Top

Examples

This example retrieves list of entities provided in the input XML or JSON file that has to be imported. 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://psuedo.com:14000/iam/governance/selfservice/api/v1/notification/search/adv'

Example of Response Body

The following example shows the contents of the response body.

 "searchResultTOS": [
        {
            "templatename": "Add Proxy Notification",
            "id": 12,
            "eventname": "Add Proxy",
            "subject": "?????? - ???????????????????????????????????????????????????",
            "locale": "ja_JP",
            "status": "Disabled",
            "createuser": "-1",
            "customId": "Add Proxy Notificationja_JP?????? - ???????????????????????????????????????????????????"
        },
        {
            "templatename": "Add Proxy Notification",
            "id": 12,
            "eventname": "Add Proxy",
            "subject": "Avis - Utilisateur mandataire cr????",
            "locale": "fr_CA",
            "status": "Disabled",
            "createuser": "-1",
            "customId": "Add Proxy Notificationfr_CAAvis - Utilisateur mandataire cr????"
        },
        {
            "templatename": "Add Proxy Notification",
            "id": 12,
            "eventname": "Add Proxy",
            "subject": "Besked - Stedfortr??der er oprettet",
            "locale": "da_DK",
            "status": "Disabled",
            "createuser": "-1",
            "customId": "Add Proxy Notificationda_DKBesked - Stedfortr??der er oprettet"
        },
        {
            "templatename": "Add Proxy Notification",
            "id": 12,
            "eventname": "Add Proxy",
            "subject": "Notificaci??n: El usuario representante se ha creado",
            "locale": "es_ES",
            "status": "Disabled",
            "createuser": "-1",
            "customId": "Add Proxy Notificationes_ESNotificaci??n: El usuario representante se ha creado"
        },
        {
            "templatename": "Add Proxy Notification",
            "id": 12,
            "eventname": "Add Proxy",
            "subject": "Notifica????o -UserCreated Substituto",
            "locale": "pt_BR",
            "status": "Disabled",
            "createuser": "-1",
            "customId": "Add Proxy Notificationpt_BRNotifica????o -UserCreated Substituto"
        },
        {
            "templatename": "Add Proxy Notification",
            "id": 12,
            "eventname": "Add Proxy",
            "subject": "wecw",
            "locale": "zh_CN",
            "status": "Disabled",
            "createuser": "-1",
            "customId": "Add Proxy Notificationzh_CNwecw"
        },
        {
            "templatename": "Add Proxy Notification",
            "id": 12,
            "eventname": "Add Proxy",
            "subject": "?????? - ???????????????????????????",
            "locale": "zh_TW",
            "status": "Disabled",
            "createuser": "-1",
            "customId": "Add Proxy Notificationzh_TW?????? - ???????????????????????????"
        },
        {
            "templatename": "Add Proxy Notification",
            "id": 12,
            "eventname": "Add Proxy",
            "subject": "?????????? - ???? ?????????? ???????????? ????????????",
            "locale": "ar_AE",
            "status": "Disabled",
            "createuser": "-1",
            "customId": "Add Proxy Notificationar_AE?????????? - ???? ?????????? ???????????? ????????????"
        },
        {
            "templatename": "Add Proxy Notification",
            "id": 12,
            "eventname": "Add Proxy",
            "subject": "Upozorn??n?? - byl vytvo??en z??stupce u??ivatele",
            "locale": "cs_CZ",
            "status": "Disabled",
            "createuser": "-1",
            "customId": "Add Proxy Notificationcs_CZUpozorn??n?? - byl vytvo??en z??stupce u??ivatele"
        }
    ] 
Back to Top