WbDbs icon

WbDbs

n8n node to interact with WB API

Overview

This node interacts with the Wildberries DBS (Drop-Shipping Business System) API to update ("patch") the receive status of an assembly order by its Order ID. It is useful in scenarios where you need to confirm or update the receipt of orders within the Wildberries platform, for example, confirming that a specific assembly order has been received and providing a confirmation code visible to customers on the Wildberries website and app.

Practical examples include:

  • Automating the confirmation of received assembly orders after physical verification.
  • Updating order statuses in bulk workflows to keep Wildberries order data synchronized.
  • Providing customers with confirmation codes related to their orders programmatically.

Properties

Name Meaning
Order Id The unique identifier of the assembly order to be updated. This is a required numeric field.
Code A confirmation code displayed to the customer on the Wildberries site and app. This is optional.

Output

The node outputs JSON data representing the response from the Wildberries DBS API after patching the order receive status. This typically includes confirmation of the update and any relevant metadata returned by the API.

No binary data output is indicated.

Dependencies

  • Requires access to the Wildberries DBS API.
  • Needs an API authentication token or key configured in n8n credentials (referred generically as "an API key credential").
  • Uses HTTP requests with JSON payloads to communicate with the Wildberries API endpoint.

Troubleshooting

  • Common issues:

    • Invalid or missing Order Id will cause the API call to fail.
    • Incorrect or expired API authentication may result in authorization errors.
    • Providing an invalid confirmation code format might lead to validation errors from the API.
  • Error messages:

    • Authorization errors: Check that the API key credential is correctly set up and valid.
    • Validation errors: Ensure the Order Id is correct and the confirmation code meets expected format requirements.
    • Network or connectivity errors: Verify network access to the Wildberries API endpoint.

Links and References

  • Wildberries DBS API documentation (refer to official Wildberries developer resources).
  • n8n HTTP Request node documentation for understanding API interaction basics.

Discussion