For the complete documentation index, see llms.txt. This page is also available as Markdown.

2.0.0

In this Version...

Changed

  • The Enrollment and Authentication endpoints must be called with encrypted audio and templates, and the response will also be encrypted.

  • The format of the responses for the Bad Request and Internal Server Error errors has changed. Now the response is a json with the following format:

    • Bad Request:

    {
      "status": 400,
      "error": "BadRequest",
      "timeStamp": "2022-01-14T10:42:05.521922Z"
    }
    • Internal Server Error:

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

Last updated