WbCommunication icon

WbCommunication

n8n node to interact with WB API

Overview

This node is designed to retrieve a specific feedback entry by its unique identifier from a service (likely Wildberries, given the context). It is useful when you want to fetch detailed information about a particular customer review or feedback item. Practical applications include monitoring individual customer feedback for quality control, responding to specific reviews, or aggregating data for analysis.

Properties

Name Meaning
Id The unique identifier of the feedback to retrieve. This is a required string property.

Output

The node outputs JSON data representing the feedback details corresponding to the provided Id. The structure typically includes all relevant fields of the feedback such as text, rating, author info, timestamps, and any other metadata returned by the API. There is no indication that binary data is output by this node.

Dependencies

  • Requires an API key credential for authentication with the external service.
  • Depends on the Wildberries API endpoint defined in the bundled swagger JSON.
  • The node uses HTTP requests with JSON content type headers.
  • No additional environment variables are explicitly required beyond the API credential.

Troubleshooting

  • Common issues:
    • Providing an invalid or non-existent feedback Id will likely result in an error or empty response.
    • Missing or incorrect API credentials can cause authentication failures.
    • Network connectivity problems may prevent successful API calls.
  • Error messages:
    • Authentication errors indicate missing or invalid API keys; ensure correct credentials are configured.
    • "Not Found" or similar errors suggest the specified feedback Id does not exist; verify the Id value.
    • Timeout or connection errors require checking network access and API availability.

Links and References

  • Refer to the Wildberries API documentation for detailed schema and examples of feedback data.
  • n8n documentation on creating and using custom nodes with API integrations.

Discussion