Plutio icon

Plutio

Consume Plutio API

Overview

The Plutio - Comment: Delete operation node allows you to delete a specific comment in your Plutio workspace by providing its unique Comment ID. This is useful for automating the cleanup or moderation of comments, such as removing outdated, inappropriate, or duplicate feedback from tasks, projects, or other entities within Plutio.

Practical examples:

  • Automatically remove spam or flagged comments from project discussions.
  • Clean up old comments after a task or project is completed.
  • Integrate with moderation workflows to delete comments based on external triggers.

Properties

Name Type Meaning
Comment ID String The unique identifier of the comment to be deleted. Required for the delete operation.

Output

The output will be a JSON object indicating the result of the deletion. If successful, it typically returns:

{
  "success": true
}

If an error occurs and "Continue On Fail" is enabled, the output will include an error message:

{
  "error": "Error message here"
}

Dependencies

  • External Service: Requires access to the Plutio API.
  • Credentials: You must configure valid Plutio API credentials (plutioApi) in n8n.
  • n8n Configuration: No additional environment variables are required beyond standard credential setup.

Troubleshooting

Common Issues:

  • Invalid Comment ID: If the provided Comment ID does not exist, the API will return an error.
  • Missing Credentials: If Plutio API credentials are not set up correctly, authentication errors will occur.
  • Insufficient Permissions: The connected Plutio account must have permission to delete comments.

Common Error Messages:

  • "Comment not found": Ensure the Comment ID is correct and exists in your Plutio workspace.
  • "Unauthorized": Check that your Plutio API credentials are valid and have sufficient permissions.
  • "Missing required parameter: _id": Make sure the Comment ID property is filled in.

How to resolve:

  • Double-check the Comment ID value.
  • Verify your Plutio API credentials in n8n.
  • Ensure your user has rights to delete comments in Plutio.

Links and References

Discussion