Skip to main content

Logging

"Logging" refers to the retention of voice data sent by AmiVoice API users and the results of speech recognition processing on our company's servers. In the case of logging, it means you have agreed to provide voice data to our company. Users can decide whether to allow or disallow logging when calling the API themselves.

caution

Voice data and recognition results stored on the server may be used to improve the performance of our company's products.

The method for setting whether to enable or disable logging differs depending on the API.

Synchronous HTTP Interface

You can select logging or no logging by changing the endpoint.

POST https://acp-api.amivoice.com/v1/recognize    (logging)
POST https://acp-api.amivoice.com/v1/nolog/recognize (no logging)

Asynchronous HTTP Interface

Specified by request parameters. By default is logging. For no logging, specify loggingOptOut=True in the d parameter.

WebSocket Interface

You can select logging or no logging by changing the endpoint.

wss://acp-api.amivoice.com/v1/      (logging)
wss://acp-api.amivoice.com/v1/nolog/ (no logging)