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 projects, applications, databases, and more. Specifically, for the Project - Delete operation, it deletes a project identified by its ID from the Coolify platform. This is useful in automation workflows where you want to programmatically remove projects without manual intervention, for example, cleaning up test projects after CI/CD pipelines or removing obsolete projects.
Properties
| Name | Meaning |
|---|---|
| ID | The unique identifier of the project to delete. This is a required string input that specifies which project will be removed. |
Output
The node outputs a JSON array containing the results of the delete operation(s). Each item in the output corresponds to one execution of the delete action on a project. The exact structure depends on the Coolify API response but generally includes confirmation of deletion or details about the deleted project.
No binary data output is produced by this operation.
Dependencies
- Requires an active connection to the Coolify API.
- Needs an API authentication token credential configured in n8n to authorize requests.
- The node uses internal helper functions to make HTTP requests to the Coolify REST endpoints.
Troubleshooting
Common issues:
- Invalid or missing project ID: Ensure the "ID" property is correctly set and corresponds to an existing project.
- Authentication errors: Verify that the API key credential is valid and has sufficient permissions.
- Network or API downtime: Check connectivity to the Coolify API endpoint.
Error messages:
"The resource "project" is not implemented!"— indicates a misconfiguration or code issue; unlikely if using the official node."The operation "delete" is not implemented!"— suggests the operation name might be misspelled or unsupported.- API errors returned from Coolify (e.g., 404 Not Found) typically mean the project ID does not exist or was already deleted.
Resolving these usually involves verifying input parameters, credentials, and network status.
Links and References
- Coolify Official Documentation
- Coolify API Reference (for understanding API responses and error codes)