Actions36
- Application Actions
- Database Actions
- Deployment Actions
- Environment Variable Actions
- Private Key Actions
- Project Actions
- Resource Actions
- Server Actions
Overview
This node integrates with the Coolify API to manage various resources such as applications, databases, deployments, and more. Specifically, for the Application - Delete operation, it deletes an application identified by its UUID from the Coolify platform.
Common scenarios where this node is useful include automating cleanup of applications that are no longer needed, managing lifecycle of applications programmatically, or integrating application deletion into larger workflows such as CI/CD pipelines or resource management systems.
For example, after a deployment pipeline finishes testing an application, this node can be used to automatically delete the test application to save resources.
Properties
| Name | Meaning |
|---|---|
| Application ID | UUID of the application to delete |
The "Application ID" property is required and expects a string representing the unique identifier (UUID) of the application you want to delete.
Output
The node outputs a JSON array containing the response(s) from the Coolify API after attempting to delete the specified application(s). The exact structure depends on the API's response but typically includes confirmation of deletion or error details if the operation failed.
No binary data output is produced by this operation.
Dependencies
- Requires an active connection to the Coolify API.
- Needs an API authentication token configured in n8n credentials to authorize requests.
- The node relies on internal helper functions to make HTTP requests to the Coolify API endpoints.
Troubleshooting
Common issues:
- Invalid or missing Application ID: Ensure the UUID provided is correct and corresponds to an existing application.
- Authentication errors: Verify that the API key or token credential is correctly set up and has sufficient permissions.
- Network or API availability issues: Confirm that the Coolify API endpoint is reachable and operational.
Error messages:
"The resource "application" is not implemented!"— This indicates a misconfiguration or unsupported resource; ensure the resource parameter is set to "application"."The operation "delete" is not implemented!"— Indicates the delete operation is not recognized; verify the operation parameter is exactly "delete".- API errors returned from Coolify will be passed through; check the message for details like "application not found" or permission denied.
Resolving these usually involves verifying input parameters, credentials, and network connectivity.
Links and References
- Coolify Official Documentation
- Coolify API Reference (for detailed API endpoints and responses)