Actions109
- Asset Layouts Actions
- Asset Passwords Actions
- Assets Actions
- Get Assets
- Get Companies Company Id Assets
- Post Companies Company Id Assets
- Get Companies Company Id Assets Id
- Put Companies Company Id Assets Id
- Delete Companies Company Id Assets Id
- Put Companies Company Id Assets Id Archive
- Put Companies Company Id Assets Id Unarchive
- Put Companies Company Id Assets Id Move Layout
- Cards Actions
- Companies Actions
- Expirations Actions
- Exports Actions
- Folders Actions
- IP Addresses Actions
- Lists Actions
- Magic Dash Actions
- Matchers Actions
- Networks Actions
- Password Folders Actions
- Procedure Tasks Actions
- Websites Actions
- Procedures Actions
- Public Photos Actions
- Rack Storage Items Actions
- Rack Storages Actions
- Relations Actions
- Uploads Actions
- Users Actions
- Activity Logs Actions
- Articles Actions
Overview
The "Delete Ip Address" operation for the "IP Addresses" resource in this custom n8n node is designed to remove a specific IP address from an external system (presumably managed via the AvantGuard Hudu API). This node would be beneficial in automated workflows where you need to programmatically manage and clean up IP addresses, such as deprovisioning resources, enforcing security policies, or maintaining up-to-date network inventories.
Practical examples:
- Automatically deleting obsolete or unauthorized IP addresses from your inventory.
- Integrating with incident response workflows to remove compromised IPs.
- Cleaning up test or temporary IP addresses after use.
Properties
| Name | Type | Meaning |
|---|---|---|
| Id | Number | IP Address ID. The unique identifier of the IP address to delete. |
Output
- json: The output will typically contain the result of the delete operation. This may include a status message, confirmation of deletion, or error details if the operation failed. The exact structure depends on the API's response but generally includes fields indicating success or failure.
Dependencies
- External Service: Requires access to the AvantGuard Hudu API.
- API Key/Credentials: Needs valid credentials configured in n8n under the name avantguardHuduApi.
- Environment Variable: The base URL for the API must be set in the credentials as baseUrl.
Troubleshooting
Common Issues:
- Invalid or missing credentials: If the API key or base URL is not correctly configured, the node will fail to authenticate.
- Non-existent IP Address ID: Attempting to delete an IP address that does not exist will likely result in an error from the API.
- Insufficient permissions: The provided API credentials must have permission to delete IP addresses.
Common Error Messages:
401 Unauthorized: Check your API credentials and ensure they are correct.404 Not Found: The specified IP Address ID does not exist; verify the ID.403 Forbidden: The API user does not have permission to perform deletions.