Actions21
Overview
This node integrates with the Runn platform to manage various resources such as clients, projects, and people. Specifically, for the Projects - Delete operation, it deletes a project identified by its ID from the Runn account. This is useful in scenarios where projects are completed, canceled, or no longer needed, helping keep the project list clean and up-to-date.
Practical examples:
- Automatically removing archived projects after a certain period.
- Cleaning up test or dummy projects created during development.
- Integrating with other workflows that require project deletion upon certain triggers.
Properties
| Name | Meaning |
|---|---|
| ID | The unique identifier of the project to delete. This is required to specify which project to remove. |
| Dry Run | When enabled (true), simulates the deletion without making any actual changes to the Runn account. |
| Options | A collection for additional optional parameters (currently empty, reserved for future use or extensions). |
Output
The output consists of an array of JSON objects representing the result of the delete operation. Typically, this will include confirmation of the deletion or relevant metadata returned by the Runn API.
If the "Dry Run" option is enabled, the output simulates the deletion response without affecting real data.
No binary data output is involved in this operation.
Dependencies
- Requires an active connection to the Runn API via an API key or authentication token configured in n8n.
- The node depends on internal helper modules managing API calls for projects.
- No additional external services beyond Runn are required.
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 or authentication credentials for Runn are valid and have sufficient permissions.
- Network or API downtime: Check connectivity and Runn service status if requests fail unexpectedly.
Error messages:
"Unsupported resource": Occurs if the resource parameter is not set to "projects" when attempting this operation.- API error messages from Runn (e.g., "Project not found") indicate invalid IDs or permission issues.
Resolution tips:
- Double-check input parameters.
- Enable "Dry Run" to simulate and verify before actual deletion.
- Use the node's "Continue On Fail" option to handle errors gracefully in workflows.
Links and References
- Runn API Documentation — Official API docs for understanding project management endpoints.
- n8n Documentation — For general guidance on using and configuring nodes and credentials.
