Actions16
- Сборочные Задания DBS Actions
- Метаданные DBS Actions
Overview
This node is designed to interact with the Wildberries (WB) API specifically for managing "Сборочные Задания DBS" (Assembly Tasks DBS). The operation "Post Dbs Orders Client" allows users to send a list of orders to the WB API. This is useful in scenarios where you need to programmatically submit multiple DBS orders in bulk, such as automating order processing or integrating order management systems with WB's platform.
Practical examples include:
- Automatically posting new assembly orders received from an external system.
- Batch updating or creating DBS orders based on inventory or sales data.
- Integrating with ERP or warehouse management systems to streamline order submission.
Properties
| Name | Meaning |
|---|---|
| Orders | A JSON array representing the list of orders to be posted. Each element corresponds to one order. |
The "Orders" property expects a JSON string that will be parsed and sent as the request body to the API.
Output
The node outputs the response from the WB API after posting the orders. The output is structured as JSON under the json field. It typically contains confirmation details about the submitted orders, such as success status, order IDs, or error messages if any orders failed.
No binary data output is indicated by the source code.
Dependencies
- Requires an API key credential for authentication with the WB API (referred generically as "an API key credential").
- Depends on the WB API endpoint defined in the bundled swagger JSON (
04-orders-dbs_modified.json). - Uses HTTP headers specifying
Accept: application/jsonandContent-Type: application/json. - The base URL for requests is derived from the swagger definition.
Troubleshooting
- Invalid JSON in Orders: If the "Orders" input is not valid JSON, the node will fail to parse it. Ensure the JSON array is correctly formatted.
- Authentication Errors: Missing or invalid API credentials will cause authorization failures. Verify that the API key credential is properly configured.
- API Response Errors: The WB API may return errors if orders are malformed or contain invalid data. Check the response message for details.
- Network Issues: Connectivity problems can prevent successful API calls. Confirm network access to the WB API endpoint.
Links and References
- Wildberries API Documentation (general reference for WB API)
- Swagger JSON file used internally:
04-orders-dbs_modified.json(contains detailed API schema for DBS orders)
If you need further details on specific fields within the orders JSON or example payloads, please provide additional information or sample data.