> For the complete documentation index, see [llms.txt](https://docs.facephi.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.facephi.com/docs.facephi-pt-br/sdks/backend-sdk/voice/release_notes/2.0.0_release_notes.md).

# 2.0.0

Nesta Versão...

### Alterado

* Os endpoints de Enrollment e Authentication devem ser chamados com áudios e templates criptografados, e a resposta também estará criptografada.
* O formato das respostas dos erros Bad Request e Internal Server Error mudou. Agora a resposta é um json com o seguinte formato:

  * Bad Request:

  ```json
  {
    "status": 400,
    "error": "BadRequest",
    "timeStamp": "2022-01-14T10:42:05.521922Z"
  }
  ```

  * Internal Server Error:

  ```json
  {
    "status": 500,
    "error": "Voice-SDK Exception",
    "exception": "Bad format",
    "timeStamp": "2022-01-14T10:42:05.521922Z"
  }
  ```
