Ikoula API Veeam
Actions26
- Backup Actions
- Backup Policy Actions
- Management Actions
- Veeam Actions
Overview
This node interacts with the Ikoula Veeam API to manage Veeam backup and management agents. Specifically, for the Management resource and the Delete Management Agent operation, it deletes a specified management agent from a Veeam subscription.
Typical use cases include automating cleanup or decommissioning of management agents that are no longer needed in a Veeam backup environment. For example, when an agent is retired or replaced, this node can be used to remove its record programmatically.
Properties
| Name | Meaning |
|---|---|
| Subscription ID | The numeric ID of the Veeam subscription under which the management agent exists. |
| Management ID | The numeric ID of the management agent to delete. |
| Response Format | The format of the API response returned by the node. Options: JSON, XML. |
Output
The node outputs the API response in the selected format (json or xml) inside the json field of the output item. If the response is JSON, it will be parsed into an object; if XML, it will be returned as a string under the data property.
Example JSON output structure:
{
"json": {
// API response data confirming deletion or error details
}
}
No binary data output is produced by this operation.
Dependencies
- Requires an API key credential for authenticating with the Ikoula Veeam API.
- The node uses HTTPS requests to the Ikoula API endpoint (default:
https://api.ikoula.com). - The password is encrypted using RSA public key encryption before transmission.
- No additional external dependencies beyond standard HTTP and cryptography libraries bundled with n8n.
Troubleshooting
No credentials provided!
This error occurs if the required API authentication credentials are missing. Ensure you have configured the API key credential properly in n8n.Invalid Subscription ID or Management ID
If the IDs provided do not correspond to existing resources, the API may return errors indicating not found or unauthorized access. Verify the IDs are correct and belong to your account.API Response Errors
The node returns raw API error messages in the output if the request fails. Check the message for details such as permission issues or invalid parameters.Network or Endpoint Issues
If the API URL is unreachable or incorrect, the node will fail. Confirm network connectivity and that the API URL is valid.
Links and References
- Ikoula Veeam API Documentation (general reference, check for latest API docs)
- n8n HTTP Request Node Documentation (for understanding HTTP request handling)
This summary focuses on the Management resource's Delete Management Agent operation as requested.