---
sourceDocument: オーストラリアの対話型インターフェース
sourceDocumentLink: https://servicenow-prod.fluidtopics.net/r/ja-JP/conversational-interfaces

 Release :

    - australia

ft:locale :

    - ja-JP

ft:publication_title :

    - オーストラリアの対話型インターフェース

ft:clusterId :

    - convint

bundleId :

    - convint

workflow :

    - Platform


---

# ブランディングをチャットクライアントに渡す

# ブランディングをチャットクライアントに渡す {#ariaid-title1}

* リリースバージョン: Australia
* 
* 更新日 2026年03月12日
* 
* ![](https://www.servicenow.com/docs/portal-asset/ico-clock) 所要時間：1分

カスタムブランディングをカスタムチャット統合に渡します。
ブランディングの詳細については、「 [仮想エージェントボットのブランディングを設定](https://servicenow-prod.fluidtopics.net/jxrFFn~1AM7mWAb8Q3X_ow "インスタンスを使用するさまざまな組織に対して、さまざまな 仮想エージェント ブランディング構成を作成します。これらの構成は、Web ベースのチャットおよびモバイルクライアントにのみ適用されます。") 」を参照してください。sn_csを使用します `。VASystemObject.getSettings` を使用してブランディングを適用します。  
スクリプト例：

    va_sms_twilio_adapter_default_text_outbound_transformer
    (function execute(inputs, outputs) {
      try {
        var richControl = inputs.rich_control;
        var branding = sn_cs.VASystemObject.getSettings("default_branding"); // new
        var header = "(" + branding["header_label"] + ") "; // new
        outputs.result = header; // new
        outputs.result += richControl['label'];
      } catch(e){
        gs.error('Error in default text outbound transformer: ' + e.message);
        throw e; 
      } 
    })(inputs, outputs);


