deleteCallRecording
Delete a recording from your account
Details
- Method:
DELETE - Path:
/2010-04-01/Accounts/{AccountSid}/Calls/{CallSid}/Recordings/{Sid}.json - Operation ID:
DeleteCallRecording
Parameters
{
"AccountSid": {
"description": "The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the Recording resources to delete.",
"required": true,
"location": "path",
"type": "string"
},
"CallSid": {
"description": "The [Call](https://www.twilio.com/docs/voice/api/call-resource) SID of the resources to delete.",
"required": true,
"location": "path",
"type": "string"
},
"Sid": {
"description": "The Twilio-provided string that uniquely identifies the Recording 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('deleteCallRecording', {
# Add required parameters here
})