WbReports icon

WbReports

n8n node to interact with WB API

Actions26

Overview

This node interacts with a specific API to retrieve information about paid storage tasks by their unique Task Id. It is designed to fetch details or download data related to a particular paid storage task, identified by its Task Id. This functionality is useful in scenarios where users need to track, audit, or download results of paid storage operations, such as retrieving generated reports or files associated with a paid storage task.

Practical examples include:

  • Downloading the output file of a paid storage generation task.
  • Checking the status or details of a specific paid storage task by its ID.

Properties

Name Meaning
Task Id The unique identifier of the paid storage task to retrieve or download data from.

Output

The node outputs JSON data containing the details or content related to the specified paid storage task. The exact structure depends on the API response but typically includes metadata about the task and possibly the downloadable content or a link to it.

If the node supports binary data output (e.g., downloading files), the binary data will represent the content of the paid storage task result, such as a report or generated file.

Dependencies

  • Requires an API key credential or similar authentication token to access the external service's API.
  • The node uses a base URL configured from an imported OpenAPI specification.
  • No additional external dependencies are explicitly required beyond standard HTTP request capabilities.

Troubleshooting

  • Invalid Task Id: If the provided Task Id does not exist or is malformed, the API may return an error indicating the task was not found. Verify the Task Id is correct.
  • Authentication Errors: Missing or invalid API credentials will cause authorization failures. Ensure that the API key or authentication token is correctly configured.
  • Network Issues: Connectivity problems can prevent the node from reaching the API endpoint. Check network settings and API availability.
  • Unexpected Response Format: If the API changes its response format, the node might fail to parse the output correctly. Confirm the API version compatibility.

Links and References

  • Refer to the external API documentation for "Paid Storage Tasks" for detailed information on available endpoints and data formats.
  • n8n documentation on creating custom nodes and handling API requests.

Discussion