## SEFAZ / MG / DEC / Caixa Postal
Retorna mensagens de uma página da Caixa Postal do DEC (Domicílio Eletrônico do Contribuinte) da Secretaria da Fazenda de Minas Gerais.


### Site URL
- https://www2.fazenda.mg.gov.br/sol/

### Request
POST endpoint: `https://api.infosimples.com/api/v2/consultas/sefaz/mg/dec/caixa-postal`



| Parameter          | Description                                                                                                                                                                   |
| ------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| token*             | The token that will authenticate and authorize the request.                                                                                                                   |
| pkcs12_cert*       | Content of the encrypted A1 digital certificate file following <a href="http://api.infosimples.com/consultas/docs/certificados#criptografia">the encryption instructions</a>. |
| pkcs12_pass*       | Password of the encrypted A1 digital certificate following <a href="http://api.infosimples.com/consultas/docs/certificados#criptografia">the encryption instructions</a>.     |
| ignora_nao_lidas** | Se for informado o valor 0, a API abrirá as mensagens não lidas da caixa postal.                                                                                              |
| data_inicio**      | Start date in ISO 8601 format. For example, April 22, 1985 is represented as "1985-04-22". Make sure to include leading zeros; the format "1985-4-22" is invalid.             |
| data_fim**         | End date in ISO 8601 format. For example, April 22, 1985 is represented as "1985-04-22". Make sure to include leading zeros; the format "1985-4-22" is invalid.               |

> * Required parameter.

> ** Optional parameter. Sometimes it is necessary to set at least one of the optional parameters for the service to work properly.


### Response examples (OK)
```json
{
  "code": 200,
  "code_message": "A requisição foi processada com sucesso.",
  "errors": [],
  "header": {
    "api_version": "v2",
    "product": "Consultas",
    "service": "sefaz/mg/dec/caixa-postal",
    "parameters": {
      "ignora_nao_lidas": 1,
      "data_inicio": "1111-11-11",
      "data_fim": "1111-11-11",
      "pkcs12_cert_md5": "aa25eae9298a43740f9a763477c20a1f",
      "pkcs12_pass_md5": "c9c59c5246576b81c3f2712100204dec"
    },
    "client_name": "Minha Empresa",
    "token_name": "Token de Produção",
    "billable": true,
    "price": "0.2",
    "requested_at": "2022-07-13T19:38:01.000-03:00",
    "elapsed_time_in_milliseconds": 225,
    "remote_ip": "111.111.111.111",
    "signature": "U2FsdGVkX19/6LXsazqd+03hxUasdicsDfDxoAOXhmJB6oAoGDT/FlJZYBk4YlJNFnRPJuEc4psHQQ9QGQfJ0g=="
  },
  "data_count": 1,
  "data": [
    {
      "lidas": 1,
      "mensagens": [
        {
          "lida": false,
          "envio_data": "11/11/1111",
          "ciencia_data": "11/11/1111",
          "assunto": "Exemplo de Texto",
          "categoria": "Comunicação",
          "nome_empresarial": null,
          "ie": null,
          "numero_mensagem": null,
          "remetente": null,
          "protocolo": null,
          "situacao_protocolo": null,
          "protocolo_transmissao": null,
          "transmissao_data": null,
          "tipo_declaracao": null,
          "periodo": null,
          "situacao": null,
          "conteudo_texto": null,
          "conteudo_html": null
        },
        {
          "lida": true,
          "envio_data": "11/11/1111 11:11:11",
          "ciencia_data": "11/11/1111 11:11:1",
          "assunto": "Exemplo de Texto",
          "categoria": "Comunicação",
          "nome_empresarial": "Exemplo de Nome",
          "ie": "11111111",
          "numero_mensagem": "11111111",
          "remetente": "Exemplo de Texto",
          "protocolo": "111.111.111.111-1",
          "situacao_protocolo": "INDEFERIDA",
          "protocolo_transmissao": "111.111.111.111-1",
          "transmissao_data": "11/11/1111",
          "tipo_declaracao": "Exemplo de Texto",
          "periodo": "11/1111",
          "situacao": "Desprezada",
          "conteudo_texto": "Exemplo de mensagem",
          "conteudo_html": "<div>Exemplo de <b>mensagem</b></div>"
        }
      ],
      "nao_lidas": 1,
      "site_receipt": "https://www.exemplo.com/exemplo-de-url"
    }
  ],
  "site_receipts": [
    "https://www.exemplo.com/exemplo-de-url"
  ]
}
```


### Preview file

The preview file (`site_receipts`) in the response JSON is **generated by the source (website/app)** that processed the automation.

### Code snippets


#### Python
```python
# Tested with: Python 3.10.19, Python 3.14.0
import requests
import base64
# pip install aes-bridge
import aes_bridge

url = 'https://api.infosimples.com/api/v2/consultas/sefaz/mg/dec/caixa-postal'
args = {
  "pkcs12_cert":      aes_bridge.encrypt(base64.b64encode(open("certificate.pfx", "rb").read()).decode(), "ENCRYPTION_KEY").decode("ascii").replace("+", "-").replace("/", "_").rstrip("="),
  "pkcs12_pass":      aes_bridge.encrypt("CERTIFICATE_PASSWORD", "ENCRYPTION_KEY").decode("ascii").replace("+", "-").replace("/", "_").rstrip("="),
  "ignora_nao_lidas": "VALUE_OF_PARAMETER_IGNORA_NAO_LIDAS",
  "data_inicio":      "VALUE_OF_PARAMETER_DATA_INICIO",
  "data_fim":         "VALUE_OF_PARAMETER_DATA_FIM",
  "token":            "WRITE_YOUR_TOKEN_HERE",
  "timeout":          "300"
}

response = requests.post(url, args)
response_json = response.json()
response.close()

if response_json['code'] == 200:
  print("Retorno com sucesso: ", response_json['data'])
elif response_json['code'] in range(600, 799):
  mensagem = "Resultado sem sucesso. Leia para saber mais: \n"
  mensagem += "Código: {} ({})\n".format(response_json['code'], response_json['code_message'])
  mensagem += "; ".join(response_json['errors'])
  print(mensagem)

print("Cabeçalho da consulta: ", response_json['header'])
print("URLs com arquivos de visualização (HTML/PDF): ", response_json['site_receipts'])
```


## We are here to help
Do you still need to figure something out? Reach us at [suporte@infosimples.com.br](mailto:suporte@infosimples.com.br) and our highly qualified support team will be happy to help.
