WbFbs icon

WbFbs

n8n node to interact with WB API

Overview

This node interacts with the Wildberries (WB) API specifically for managing FBS (Fulfillment by Seller) supplies. The "Delete Supplies By Supplyid" operation allows users to delete a specific supply record identified by its unique Supply Id. This is useful in scenarios where a supply entry was created erroneously or needs to be removed from the system for inventory or logistical corrections.

Practical examples:

  • Removing a mistakenly created supply record before it is processed.
  • Cleaning up outdated or canceled supply entries to maintain accurate records.

Properties

Name Meaning
Supply Id The unique identifier of the supply to delete. Example: "WB-GI-1234567"

Output

The node outputs JSON data representing the result of the delete operation. Typically, this will include confirmation of deletion or an error message if the supply ID does not exist or cannot be deleted. There is no indication that binary data is output by this node.

Dependencies

  • Requires access to the Wildberries API.
  • Needs an API key credential or similar authentication token configured in n8n to authorize requests to the WB API.
  • The base URL and request headers are preconfigured based on the imported OpenAPI specification.

Troubleshooting

  • Common issues:

    • Invalid or non-existent Supply Id: The API may return an error if the provided Supply Id does not match any existing supply.
    • Authentication errors: Missing or invalid API credentials will prevent successful deletion.
    • Network or API downtime can cause request failures.
  • Error messages and resolutions:

    • "Supply not found": Verify the Supply Id is correct and exists in the system.
    • "Unauthorized" or "Authentication failed": Check that the API key or authentication token is correctly set up in n8n.
    • Timeouts or connection errors: Ensure network connectivity and that the WB API service is operational.

Links and References

  • Wildberries API documentation (for FBS supplies management) – consult the official WB API docs for detailed endpoint behavior and requirements.
  • n8n documentation on creating and configuring API nodes.

Discussion