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

# Aug 10, 2023 - Tokenização do cartão voucher

> Atualização da Malga em agosto de 2023 com suporte à tokenização do cartão voucher nas transações, ampliando a segurança nos pagamentos.

export const AuthorProfile = ({author}) => <div className="flex flex-row gap-3 items-center">
    {author.image && <img src={author.image} alt={author.name} className="w-10 h-10 rounded-full m-0" />}
    <div>
      <a href={author.url}>{author.name}</a>
      <br />
      <span>{author.title}</span>
    </div>
  </div>;

export const leandro = {
  name: "Leandro Rezende",
  title: "Software Engineer",
  url: "https://github.com/LeandroRezendeCoutinho",
  image: "https://github.com/LeandroRezendeCoutinho.png"
};

<AuthorProfile author={leandro} />

Agora é possível realizar a tokenização de cartão voucher, oferecendo mais segurança e proteção nas transações.

Essa nova funcionalidade oferece:

* Transacionar voucher utilizando apenas o token do cartão.
* Transacionar utilizando apenas o ID do cartão tokenizado.
* Transacionar por um customer que tenha um cartão tokenizado vinculado.

<Tip>
  SAIBA MAIS
  Sobre a [tokenização](https://docs.malga.io/api#tag/Tokens).\
  Como vincular um cartão ao [customer](https://docs.malga.io/api#operation/linkCard)
</Tip>

Siga acompanhando as novidades da Malga 🤓🎉
