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

deleteIncomingPhoneNumberAssignedAddOn

Remove the assignment of an Add-on installation from the Number specified.

Details

  • Method: DELETE
  • Path: /2010-04-01/Accounts/{AccountSid}/IncomingPhoneNumbers/{ResourceSid}/AssignedAddOns/{Sid}.json
  • Operation ID: DeleteIncomingPhoneNumberAssignedAddOn

Parameters

{
  "AccountSid": {
    "description": "The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the resources to delete.",
    "required": true,
    "location": "path",
    "type": "string"
  },
  "ResourceSid": {
    "description": "The SID of the Phone Number to which the Add-on is assigned.",
    "required": true,
    "location": "path",
    "type": "string"
  },
  "Sid": {
    "description": "The Twilio-provided string that uniquely identifies the 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('deleteIncomingPhoneNumberAssignedAddOn', {
    # Add required parameters here
})