Fider icon

Fider

Interact with Fider API

Actions12

Overview

This node interacts with the Fider API, a platform for collecting and managing user feedback. Specifically, the Comment - Delete operation allows users to delete a comment from a specified post on a Fider instance.

Typical use cases include:

  • Automating the removal of inappropriate or outdated comments from posts.
  • Integrating comment moderation workflows into broader automation pipelines.
  • Managing community feedback by programmatically deleting comments based on certain triggers or conditions.

For example, you might configure this node to delete a comment identified by its ID on a particular post URL after a moderation review process.

Properties

Name Meaning
URL The target URL of the Fider instance where the comment exists. Example: https://example.com
Comment ID The numeric identifier of the comment to be deleted.

Output

The output JSON contains a single field indicating success:

{
  "success": true
}

This confirms that the comment was successfully deleted. There is no binary data output.

Dependencies

  • Requires an API key credential for authenticating with the Fider API.
  • The node depends on network access to the specified Fider instance URL.
  • No additional external services are required beyond the Fider API itself.

Troubleshooting

  • Common issues:

    • Invalid or missing Comment ID: The node requires a valid numeric comment ID; ensure this is correctly provided.
    • Incorrect URL: The URL must point to a valid Fider instance; otherwise, the API call will fail.
    • Authentication errors: Ensure the API key credential is correctly configured and has sufficient permissions.
    • Network connectivity problems may prevent successful API calls.
  • Error messages:

    • Errors returned from the Fider API (e.g., "Comment not found" or "Unauthorized") will be surfaced as node execution errors.
    • If "continue on fail" is enabled, errors will appear in the output JSON under an error field with the message.

To resolve errors:

  • Verify the comment ID and URL.
  • Check API credentials and permissions.
  • Confirm network connectivity to the Fider instance.

Links and References

Discussion