deleteCall
Delete a Call record from your account. Once the record is deleted, it will no longer appear in the API and Account Portal logs.
Details
- Method:
DELETE - Path:
/2010-04-01/Accounts/{AccountSid}/Calls/{Sid}.json - Operation ID:
DeleteCall
Parameters
{
"AccountSid": {
"description": "The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the Call resource(s) to delete.",
"required": true,
"location": "path",
"type": "string"
},
"Sid": {
"description": "The Twilio-provided Call SID that uniquely identifies the Call 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('deleteCall', {
# Add required parameters here
})