Tallyfy icon

Tallyfy

Interact with Tallyfy workflow automation platform

Overview

This node interacts with the Tallyfy workflow automation platform, specifically allowing users to delete comments on tasks or processes. The "Delete Comment" operation removes a comment identified by its unique ID from a specified task. This is useful in scenarios where comments are no longer relevant, were added by mistake, or need to be cleaned up for clarity.

Practical examples:

  • Automatically removing outdated or resolved comments from a task.
  • Cleaning up test or placeholder comments during workflow automation.
  • Managing comment lifecycle as part of a larger process automation.

Properties

Name Meaning
Comment ID The unique identifier of the comment to delete

Output

The output JSON contains the response from the Tallyfy API after attempting to delete the comment. Typically, this will be an empty object or confirmation of deletion. If the deletion fails, the output may contain error information.

No binary data is produced by this operation.

Example output JSON (success):

{}

Example output JSON (error):

{
  "error": "Comment not found"
}

Dependencies

  • Requires an API key credential for authenticating with the Tallyfy API.
  • The node uses the base URL https://go.tallyfy.com/api or a custom base URL if provided in credentials.
  • Requires the organization ID to construct API endpoints.
  • The node depends on n8n's HTTP request helper with authentication support.

Troubleshooting

  • Common issues:

    • Providing an invalid or non-existent Comment ID will result in an error from the API.
    • Missing or incorrect API credentials will cause authentication failures.
    • Attempting to delete a comment from a task that does not exist or is inaccessible will fail.
  • Error messages and resolutions:

    • "Comment not found": Verify the Comment ID is correct and belongs to the specified task.
    • Authentication errors: Check that the API key credential is valid and has sufficient permissions.
    • Network or timeout errors: Ensure connectivity to the Tallyfy API endpoint.

Links and References

Discussion