Plutio icon

Plutio

Consume Plutio API

Overview

The Plutio Project Delete operation node allows you to delete a project from your Plutio workspace by specifying its unique Project ID. This is useful for automating the cleanup of obsolete, test, or completed projects directly from n8n workflows. For example, you might use this node in a workflow that archives data and then removes the project, or as part of an automated process to manage project lifecycle.

Properties

Name Type Meaning
Project ID String ID of the Project to delete. This uniquely identifies which project will be removed from Plutio.

Output

  • The output is a JSON object indicating the result of the deletion.
  • If successful, it returns:
    {
      "success": true
    }
    
  • If an error occurs and "Continue On Fail" is enabled, the output will be:
    {
      "error": "<error message>"
    }
    

Dependencies

  • External Service: Requires access to the Plutio API.
  • Authentication: You must configure valid Plutio API credentials in n8n under the name plutioApi.

Troubleshooting

  • Common Issues:

    • Invalid Project ID: If the provided Project ID does not exist, the API will return an error.
    • Missing Credentials: If Plutio API credentials are not set up in n8n, the node will fail to authenticate.
    • Insufficient Permissions: The API key used must have permission to delete projects.
  • Error Messages:

    • "Project not found": Ensure the Project ID is correct and exists in your Plutio account.
    • "Unauthorized": Check your API credentials and permissions.
    • "Missing required parameter: _id": Make sure the Project ID field is filled.

Links and References

Discussion