> ## Documentation Index
> Fetch the complete documentation index at: https://docs.yativo.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Remove IP Address

> Remove a specific IP address from your allowlist

Remove a single IP address from the allowlist. Pass the IP address itself as the path parameter.

```
DELETE https://api.yativo.com/api/v1/ip/{ipAddress}
```

## Path parameters

<ParamField path="ipAddress" type="string" required>
  The IP address to remove (e.g. `203.0.113.10`).
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE 'https://api.yativo.com/api/v1/ip/203.0.113.10' \
    -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
  ```
</RequestExample>

<ResponseExample>
  ```json Success theme={null}
  {
    "message": "IP address removed from whitelist and firewall."
  }
  ```
</ResponseExample>
