Removing Results
For absolute control, we permit results to be removed by invoking an HTTP DELETE request on the session endpoint.
Use correct API token
🔑 It is important that the correct API token is used for this operation. Only the token that was used for creating and uploading the session can be used for removal.
URL:
DELETE https://api.scriptix.io/api/v3/speech-to-text/session/${sessionId}
Upon removal, the following data will be erased:
- Filename
- Transcript result
Request headers
The following headers need to be present:
| Parameter | Value | Description |
|---|---|---|
| x-zoom-s2t-key | Scriptix Batch API Token | API key of type batch needed for authorization |
Responses
| Status code | Description |
|---|---|
| 200 | Transcript removed |
| 400 | The transcript is already marked as removed |
| 404 | The requested session was not found, or did not belong to the supplied token |
| 401 | Unauthorized |
| 500 | Server Error |