# Delete a Recording Transcription Use this endpoint for the [Recording Transcriptions](./index.mdx) method to delete a recording transcription from your account. If the delete is successful, a 204 response, with no body, will be returned. ## Parameters | Parameter | Description | | :-- | :-- | | Sid Required | The unique identifier that determines the transcription to delete. | ## Request shell curl https://example.signalwire.com/api/laml/2010-04-01/Accounts/{AccountSid}/Transcriptions/{Sid}.json \ -X DELETE \ -u YourProjectID:YourAuthToken javascript const { RestClient } = require(@signalwire/compatibility-api) const client = RestClient(YourProjectID, YourAuthToken, { signalwireSpaceUrl: example.signalwire.com }) client.transcriptions(Sid) .remove() .then(transcription => console.log(transcription.sid)) .done(); csharp using System; using System.Collections.Generic; using Twilio; using Twilio.Rest.Api.V2010.Account; class Program { static void Main(string[] args) { TwilioClient.Init(YourProjectID, YourAuthToken, new Dictionary { [signalwireSpaceUrl] = {SPACE}.signalwire.com }); } } python from signalwire.rest import Client as signalwire_client client = signalwire_client(YourProjectID, YourAuthToken, signalwire_space_url = example.signalwire.com) client.transcriptions(Sid).delete() ruby require signalwire/sdk @client = Signalwire::REST::Client.new YourProjectID, YourAuthToken, signalwire_space_url: example.signalwire.com @client.transcriptions(Sid).delete ## Responses 204 NO CONTENT
If the delete is successful, a 204 response, with no body, will be returned.