get_allowed_ips
Retrieve a list of whitelisted IPs associated with a specific SIP account using JSON output. Use this tool to access and manage authorized IP configurations for secure communications.
Instructions
Get list of whitelisted IPs for a SIP account
Args: sipaccount_name: Name of SIP account
Returns a JSON object with array of whitelisted IP for SIP Account Example output: { "allowed_ips": [ "88.99.12.33" ] }
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sipaccount_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"sipaccount_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"title": "Sipaccount Name"
}
},
"required": [
"sipaccount_name"
],
"title": "get_allowed_ipsArguments",
"type": "object"
}