deleteRecordingAddOnResult
Delete a result and purge all associated Payloads
Details
- Method:
DELETE - Path:
/2010-04-01/Accounts/{AccountSid}/Recordings/{ReferenceSid}/AddOnResults/{Sid}.json - Operation ID:
DeleteRecordingAddOnResult
Parameters
{
"AccountSid": {
"description": "The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the Recording AddOnResult resources to delete.",
"required": true,
"location": "path",
"type": "string"
},
"ReferenceSid": {
"description": "The SID of the recording to which the result to delete belongs.",
"required": true,
"location": "path",
"type": "string"
},
"Sid": {
"description": "The Twilio-provided string that uniquely identifies the Recording AddOnResult 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('deleteRecordingAddOnResult', {
# Add required parameters here
})