Actions35
- Secret Actions
- Workplace Actions
- Workplace User Actions
- Workplace Role Actions
- Activity Log Actions
- Project Actions
- Project Role Actions
- Project Member Actions
- Config Actions
- Config Log Actions
- Environment Actions
- Trusted IP Actions
- Integration Actions
- Auth Actions
- Share Actions
Overview
This node integrates with the Doppler API to manage projects and other resources. Specifically, for the Project - Delete operation, it allows users to delete an existing project from their Doppler account by specifying the project identifier. This is useful in scenarios where a project is no longer needed or must be removed for cleanup or organizational purposes.
Practical example:
- Automatically deleting obsolete projects as part of a CI/CD pipeline cleanup step.
- Removing test projects created during development to maintain a tidy workspace.
Properties
| Name | Meaning |
|---|---|
| Project | The identifier (slug or name) of the project to delete. This value is sent in the request body under the property "project". |
Output
The node outputs the JSON response returned by the Doppler API after attempting to delete the specified project. Typically, this will include confirmation of deletion or error details if the deletion failed.
No binary data output is involved in this operation.
Dependencies
- Requires an active connection to the Doppler API via an API key credential configured in n8n.
- The node sends HTTP DELETE requests to the Doppler API endpoint
/v3/projects/projectwith the project identifier in the request body.
Troubleshooting
Common issues:
- Providing an incorrect or non-existent project identifier will result in an error from the API indicating the project was not found.
- Missing or invalid API authentication credentials will cause authorization errors.
- Network connectivity problems can prevent the node from reaching the Doppler API.
Error messages:
- "Project not found" — Verify the project identifier is correct and exists.
- "Unauthorized" or "Authentication failed" — Check that the API key credential is correctly set up and valid.
- "Request failed" or timeout errors — Ensure network access to
https://api.doppler.comis available.
Links and References
- Doppler API Documentation (general reference for API endpoints and usage)