---
sourceDocument: Australia Conversational Interfaces
sourceDocumentLink: https://servicenow-prod.fluidtopics.net/r/pt-BR/conversational-interfaces

 Release :

    - australia

ft:locale :

    - pt-BR

ft:publication_title :

    - Australia Conversational Interfaces

ft:clusterId :

    - convint

bundleId :

    - convint

workflow :

    - Platform


---

# Pass branding to a chat client

# Pass branding to a chat client {#ariaid-title1}

* Versão de lançamento: Australia
* 
* Atualizado 12 de mar. de 2026
* 
* ![](https://www.servicenow.com/docs/portal-asset/ico-clock) 1 min. de leitura

Pass custom branding to your custom chat integration.
See [Set up your Virtual Agent bot's branding](https://servicenow-prod.fluidtopics.net/RGmHaHcSL2GknlmBd0sLrg "Create different Virtual Agent branding configurations for the various organizations that use your instance. These configurations apply to the web-based chat and mobile clients only.") for more information about branding. Use
`sn_cs.VASystemObject.getSettings` to apply branding.  
Example script:

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


