delete_sip_account
Remove a SIP account from the didlogic_mcp server by specifying its name. Returns confirmation upon successful deletion.
Instructions
Delete a SIP account
Args: name: SIP account name
Returns a SIP Account deleted
message on success
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Name of SIP account |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"description": "Name of SIP account",
"title": "Name"
}
},
"required": [
"name"
],
"title": "delete_sip_accountArguments",
"type": "object"
}