Delete

View as Markdown

Use this endpoint for the Recording Transcriptions method to delete a recording transcription from your account. If the delete is successful, a 204 response, with no body, will be returned.

Path parameters

AccountSidstringRequiredformat: "uuid"
The unique identifier for the account that created this transcription.
SidstringRequiredformat: "uuid"
The unique identifier for the transcription.

Request examples

1const { RestClient } = require('@signalwire/compatibility-api')
2const client = RestClient('YourProjectID', 'YourAuthToken', { signalwireSpaceUrl: 'example.signalwire.com' })
3
4client.transcriptions('Sid')
5 .remove()
6 .then(transcription => console.log(transcription.sid))
7 .done();

Response

A successful request returns a 204 status code with no body.