# Ver status do secret stego de lead

`GET /admin/lead/stego`

Pasta: **CRM**

## Autenticação

```http
admintoken: {{adminToken}}
```

## Descrição

# Ver status do secret stego de lead

Indica se o HMAC do tracking invisível está configurado no banco (por `CLIENT_NAME`). O valor do secret **nunca** é retornado.

## Endpoint

`GET {{baseUrl}}/admin/lead/stego`

## Autenticação

Envie o token de administrador no header `admintoken: {{adminToken}}`.

## Corpo da requisição

Corpo vazio (`{}`) ou omitido.

## Exemplo de Requisição

```bash
curl --request POST '{{baseUrl}}/admin/lead/stego' \
  --header 'token: {{token}}' \
  --header 'Content-Type: application/json' \
  --data-raw '{}'
```

## Resposta de Sucesso

```json
{
  "success": true,
  "configured": true
}
```

## Erros comuns

- `401 Unauthorized`: header `admintoken` ausente ou inválido.

## Observações

Defina ou limpe o secret com `POST /admin/lead/stego`.

## cURL

```bash
curl -X GET "{{baseUrl}}/admin/lead/stego" \
  -H "admintoken: {{adminToken}}"
```

---

[Índice da pasta](./index.md) · [Índice geral](../index.md) · [UI](https://gozap.dev/docs?op=crm/ver-status-do-secret-stego-de-lead)
