Open Context Protocol is live! 🚀 Read the launch post
deleteRecordingTranscription

deleteRecordingTranscription

References to text transcriptions of call recordings

Details

  • Method: DELETE
  • Path: /2010-04-01/Accounts/{AccountSid}/Recordings/{RecordingSid}/Transcriptions/{Sid}.json
  • Operation ID: DeleteRecordingTranscription

Parameters

{
  "AccountSid": {
    "description": "The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the Transcription resources to delete.",
    "required": true,
    "location": "path",
    "type": "string"
  },
  "RecordingSid": {
    "description": "The SID of the [Recording](https://www.twilio.com/docs/voice/api/recording) that created the transcription to delete.",
    "required": true,
    "location": "path",
    "type": "string"
  },
  "Sid": {
    "description": "The Twilio-provided string that uniquely identifies the Transcription resource to delete.",
    "required": true,
    "location": "path",
    "type": "string"
  }
}

Usage

from ocp_agent import OCPAgent

agent = OCPAgent()
await agent.register_api('twilio')

# Call this tool
result = await agent.call_tool('deleteRecordingTranscription', {
    # Add required parameters here
})