---
sourceDocument: Xanadu-Konversations-Schnittstellen
sourceDocumentLink: https://servicenow-prod.fluidtopics.net/r/de-DE/xanadu/conversational-interfaces

 Release :

    - xanadu

ft:locale :

    - de-DE

ft:publication_title :

    - Xanadu-Konversations-Schnittstellen

ft:clusterId :

    - convint

bundleId :

    - convint

workflow :

    - Platform


---

# Übergeben Sie das Branding an einen Chat-Client

# Übergeben Sie das Branding an einen Chat-Client {#ariaid-title1}

* Freigeben Version: Xanadu
* 
* Aktualisiert 1. August 2024
* 
* ![](https://www.servicenow.com/docs/portal-asset/ico-clock) 1 Minute Lesedauer

Übergeben Sie anwenderdefiniertes Branding an Ihre anwenderdefinierte Chatintegration.
Weitere Informationen zum Branding finden Sie unter [Richten Sie das Branding Ihres Virtual Agent -Bots ein](https://servicenow-prod.fluidtopics.net/F7ld8tgOqf~FyZyIb5YBFg "Erstellen Sie unterschiedliche Virtual Agent -Branding-Konfigurationen für die verschiedenen Organisationen, die Ihre -Instanz verwenden. Diese Konfigurationen gelten nur für den webbasierten Chat und für mobile Clients."). Verwenden Sie `sn_cs.VASystemObject.getSettings`, um das Branding anzuwenden.  
Beispielskript:

    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);


