get_ip_whitelist_entry
Retrieve IP whitelist entry details for a specific user and subnet configuration to verify access permissions.
Instructions
Get a specific IP whitelist entry for a user.
Args: user_id: The user ID (UUID) or email address subnet: The IP address or subnet (e.g., "8.8.8.0") subnet_size: The subnet size (e.g., 24 for /24)
Returns: IP whitelist entry details
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| subnet | Yes | ||
| subnet_size | Yes | ||
| user_id | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "subnet": {
      "title": "Subnet",
      "type": "string"
    },
    "subnet_size": {
      "title": "Subnet Size",
      "type": "integer"
    },
    "user_id": {
      "title": "User Id",
      "type": "string"
    }
  },
  "required": [
    "user_id",
    "subnet",
    "subnet_size"
  ],
  "type": "object"
}