すべてのロケール固有テンプレートの検索

GET

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

テンプレート名、イベント名、件名またはロケールをURLパラメータとして指定することで、すべてのロケール固有テンプレートを取得します。ソートとページ区切りがサポートされています。

リクエスト

問合せパラメータ
先頭に戻る

レスポンス

サポートされているメディア・タイプ

200レスポンス

操作に成功しました。
本文()
ルート・スキーマ: schema
型: array
ソースの表示
ネストされたスキーマ: SearchResult
型: object
ソースの表示

400レスポンス

入力が無効です。
先頭に戻る

この例では、インポートする必要があるXMLまたはJSON入力ファイルで提供されるエンティティのリストを取得します。ここに示す情報は、擬似システムを使用した場合のものであり、プロトタイプとして提供しています。

cURLの例

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

レスポンス本文の例

次の例は、レスポンス本文の内容を示しています。

 "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"
        }
    ] 
先頭に戻る