Actions16
- Сборочные Задания DBS Actions
- Метаданные DBS Actions
Overview
This node interacts with the Wildberries (WB) API specifically for managing "Сборочные Задания DBS" (Assembly Orders DBS). The operation "Post Dbs Orders Delivery Date" allows users to update or post delivery dates for a list of assembly orders. This is useful in scenarios where you need to programmatically set or adjust delivery schedules for multiple DBS assembly orders in bulk, streamlining logistics and order management workflows.
Practical examples include:
- Automatically updating delivery dates after receiving new scheduling information.
- Synchronizing delivery dates from an external system into WB's DBS orders.
- Batch processing delivery date changes triggered by events or other workflow steps.
Properties
| Name | Meaning |
|---|---|
| Orders | A JSON array containing the list of IDs of the DBS assembly orders for which the delivery dates will be posted or updated. |
The property expects a JSON string representing an array of order IDs, e.g.:
[
"order_id_1",
"order_id_2",
"order_id_3"
]
Output
The node outputs JSON data corresponding to the response from the WB API after posting the delivery dates for the specified orders. The exact structure depends on the API response but typically includes confirmation of success or details about any errors encountered per order.
No binary data output is indicated.
Dependencies
- Requires access to the Wildberries API.
- Needs an API key credential configured in n8n for authentication with the WB API.
- The base URL and request headers are preconfigured based on the imported OpenAPI specification.
Troubleshooting
- Invalid JSON in Orders: If the "Orders" input is not valid JSON or does not parse correctly, the node will fail. Ensure the input is a properly formatted JSON array of order IDs.
- Authentication Errors: Missing or invalid API credentials will cause authorization failures. Verify that the API key credential is correctly set up.
- API Response Errors: If the WB API returns errors (e.g., invalid order IDs, delivery date conflicts), these will be reflected in the node output. Review the error messages and correct the input accordingly.
- Empty Orders List: Providing an empty or null orders list may result in no action or an error. Always provide at least one valid order ID.
Links and References
- Wildberries API documentation (for DBS orders and delivery date management) — consult the official WB API docs for detailed endpoint behavior and payload formats.
- n8n documentation on creating and using custom nodes with API integrations.