delete_destination
Remove a specified destination from a DID number. Use this tool to eliminate unwanted routing by providing the DID number and destination ID, ensuring accurate call management.
Instructions
Remove destination from DID.
Args: number: DID number in DIDLogic id: destination ID to remove
Returns a Destination deleted
on success
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Destination ID from list_destinations | |
number | Yes | DID Number |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "Destination ID from list_destinations",
"title": "Id",
"type": "integer"
},
"number": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"description": "DID Number",
"title": "Number"
}
},
"required": [
"number",
"id"
],
"title": "delete_destinationArguments",
"type": "object"
}