delete_allowed_ip
Remove a whitelisted IP address from a specified SIP account to manage access and security. Input the SIP account name and IP address to execute the removal.
Instructions
Delete an whitelisted IP from a SIP account
Args: sipaccount_name: Name of SIP account ip: IP address to remove from whitelist
Returns "IP removed successfully" when IP removed from whitelisted
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ip | Yes | IP address to remove from whitelist | |
sipaccount_name | Yes | Name of sip account |
Input Schema (JSON Schema)
{
"properties": {
"ip": {
"description": "IP address to remove from whitelist",
"title": "Ip",
"type": "string"
},
"sipaccount_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"description": "Name of sip account",
"title": "Sipaccount Name"
}
},
"required": [
"sipaccount_name",
"ip"
],
"title": "delete_allowed_ipArguments",
"type": "object"
}