> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tartini.com.br/llms.txt
> Use this file to discover all available pages before exploring further.

# Edit your profile and notifications

> Change your name, the name the customer sees in messages, your password, and how Tartini notifies you.

export const Artigo = ({titulo, href, children}) => <a className="lista-artigos-item" href={href}>
    <span className="lista-artigos-texto">
      <span className="lista-artigos-nome">{titulo}</span>
      {children ? <span className="lista-artigos-desc">{children}</span> : null}
    </span>
    <svg className="lista-artigos-seta" viewBox="0 0 24 24" width="18" height="18" aria-hidden="true">
      <path d="M9 6l6 6-6 6" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
    </svg>
  </a>;

export const Lista = ({titulo, children}) => <div className="lista-artigos">
    {titulo ? <p className="lista-artigos-titulo">{titulo}</p> : null}
    <div className="lista-artigos-itens">{children}</div>
  </div>;

Your service name is what the customer sees as the signature when you send a message. It, your full name, and your password are found in **Configurações > Pessoal > Configurações de usuário** (Settings > Personal > User Settings). You can also get there by clicking your name in the profile menu.

<Note>
  The Tartini interface is in Portuguese. Screen and button names appear here exactly as on screen, with the translation in parentheses.
</Note>

***

## Change your name and service name

In the **Informações Pessoais** (Personal Information) card, edit **Nome completo** (Full name) and **Nome de atendimento** (Service name) and click **Salvar Alterações** (Save Changes). The full name appears to the team; the service name appears to the customer when the signature is turned on in the conversation.

<Note>
  The email doesn't change on this screen. It's your login.
</Note>

***

## Change your password

In the **Segurança** (Security) card, fill in **Senha atual** (Current password), **Nova senha** (New password, at least six characters), and **Confirmar nova senha** (Confirm new password), and click **Salvar Alterações** (Save Changes). Leave all three fields blank to keep your current password.

***

## Choose how to be notified

The two switches below the cards apply right away, with no need to save:

* **Receber notificações de todas as entidades** (Receive notifications from all entities). Even if you serve in one Unit, you get notified of new service requests in the other ones you have access to. Off by default.
* **Notificações do sistema** (System notifications). Besides the notice inside Tartini, your computer shows a notification when a message arrives for your conversations and you're not on the tab. On by default, and it asks your browser for permission the first time.

<Note>
  Both preferences are saved in the browser where you turned them on. On another computer, turn them on again.
</Note>

***

## FAQ

<AccordionGroup>
  <Accordion title="I turned on system notifications and nothing appears.">
    The browser is blocking the site's notifications. Allow them in the site settings, from the lock icon in the address bar, and reload the page. The screen shows this notice below the switch.
  </Accordion>

  <Accordion title="What's the difference between full name and service name?">
    The full name identifies you to the team and in reports. The service name is the signature the customer sees in messages.
  </Accordion>

  <Accordion title="How do I change my email?">
    There's no field for that on this screen. Talk to your company's Administrator.
  </Accordion>
</AccordionGroup>

***

## Related articles

<Lista>
  <Artigo titulo="Turn on two-factor authentication" href="/en/conta/autenticacao-em-dois-fatores">One more layer of protection.</Artigo>
  <Artigo titulo="Sign messages" href="/en/inbox/atenda-uma-conversa">Where the signature appears in the conversation.</Artigo>
</Lista>


## Related topics

- [End sessions on other devices](/en/conta/sessoes-e-dispositivos.md)
- [Receive events in your system](/en/integracoes/webhooks.md)
- [Use Tartini as your system's channel](/en/integracoes/conexao-via-api.md)
