deleteIncomingPhoneNumber
Delete a phone-numbers belonging to the account used to make the request.
Details
- Method:
DELETE - Path:
/2010-04-01/Accounts/{AccountSid}/IncomingPhoneNumbers/{Sid}.json - Operation ID:
DeleteIncomingPhoneNumber
Parameters
{
"AccountSid": {
"description": "The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the IncomingPhoneNumber resources to delete.",
"required": true,
"location": "path",
"type": "string"
},
"Sid": {
"description": "The Twilio-provided string that uniquely identifies the IncomingPhoneNumber 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('deleteIncomingPhoneNumber', {
# Add required parameters here
})