> ## 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.

# Jun 06, 2023 - Novo nome do ambiente de testes da Malga 🚀

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 diego = {
  name: "Diego Saouda",
  title: "Staff Software Engineer",
  url: "https://github.com/diego-malga",
  image: "https://github.com/diego-malga.png"
};

<AuthorProfile author={diego} />

Olá! Informamos que o provedor para testes Malga agora é chamado `SANDBOX`, conforme a listagem de provedores suportados.
Ele está disponível para a realização de testes e simulações de transações utilizando Pix, Crédito, Boleto, 3DS2 e Split.

Alteração na nomenclatura do provedor para simulações no ambiente de teste Malga: SANDBOX

A alteração do nome está refletida nas transações exibidas no ambiente de testes do Dashboard, na listagem de merchants e nas documentações Malga.

Em breve, mais novidades por aqui 🙌

Para criar um merchant com o provedor de testes, basta usar o cURL abaixo:

```bash theme={null}
curl --location 'https://api.malga.io/v1/merchants' \
--header 'x-client-id: <YOUR_CLIENT_ID>' \
--header 'x-api-key: <YOUR_SECRET_KEY>' \
--header 'Content-Type: application/json' \
--data '{
    "mcc": "<YOUR_MCC>",
    "status": true,
    "providers": [
        {
            "name": "SANDBOX",
            "priority": 1,
            "credentials": {
                "type": "SANDBOX",
                "apiKey": "<YOUR_API_KEY>"
            }
        }
    ]
}'
```

```bash theme={null}
curl --location 'https://api.malga.io/v1/merchants' \
--header 'x-client-id: <YOUR_CLIENT_ID>' \
--header 'x-api-key: <YOUR_SECRET_KEY>' \
--header 'Content-Type: application/json' \
--data '{
    "mcc": "<YOUR_MCC>",
    "status": true,
    "providers": [
        {
            "name": "SANDBOX_ANTIFRAUD",
            "priority": 1,
            "credentials": {
                "type": "SANDBOX_ANTIFRAUD",
                "apiKey": "<YOUR_API_KEY>"
            }
        }
    ]
}'
```
