get_ip_whitelist
Retrieve IP whitelist entries for a specified Vultr user, including subnet details, size, addition date, and IP type to manage network access controls.
Instructions
Get the IP whitelist for a user.
Args: user_id: The user ID (UUID) or email address
Returns: List of IP whitelist entries with subnet, subnet_size, date_added, and ip_type
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| user_id | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "user_id": {
      "title": "User Id",
      "type": "string"
    }
  },
  "required": [
    "user_id"
  ],
  "type": "object"
}