AvantGuard - DNSFilter icon

AvantGuard - DNSFilter

AvantGuard - DNSFilter

Actions277

Overview

The node operation "Scheduled Reports Destroy" is designed to delete a scheduled report by its unique identifier. This functionality is useful in scenarios where users want to programmatically remove reports that are no longer needed or relevant, helping maintain an organized and up-to-date reporting system.

For example, if a user has automated the generation of periodic reports but wants to stop and remove certain reports based on changing requirements or project completion, this operation allows them to do so efficiently within their workflow.

Properties

Name Meaning
Id The unique numeric identifier of the scheduled report to be deleted.

Output

The output of this operation typically confirms the deletion of the scheduled report. It may include a JSON object indicating success status or details about the deleted report. Since the source code does not explicitly show the output structure, it can be assumed that the output will contain at least a confirmation or status message in JSON format.

No binary data output is expected from this operation.

Dependencies

  • Requires an API key credential for authentication with the external service managing scheduled reports.
  • The node uses HTTP requests to communicate with the external API endpoint responsible for scheduled report management.
  • Proper configuration of the API base URL and headers (such as Accept and Content-Type) is necessary, typically handled internally by the node.

Troubleshooting

  • Common Issue: Providing an invalid or non-existent report ID will likely result in an error response from the API, such as "Report not found" or similar.
    • Resolution: Verify the report ID before attempting deletion.
  • Authentication Errors: If the API key or authentication token is missing or invalid, the node will fail to authenticate.
    • Resolution: Ensure that the API credentials are correctly configured and valid.
  • Network Issues: Connectivity problems can cause request failures.
    • Resolution: Check network connectivity and API service availability.

Links and References

  • Refer to the external API documentation for scheduled report management for detailed information on required parameters and response formats.
  • n8n documentation on creating and using custom nodes for API integrations.

Discussion