Actions41
- Склады Продавца Actions
- Остатки На Складах Продавца Actions
- Категории Предметы И Характеристики Actions
- Создание Карточек Товаров Actions
- Карточки Товаров Actions
- Медиафайлы Actions
- Ярлыки Actions
- Цены И Скидки Actions
Overview
This node updates stock quantities for products in a specific seller warehouse on the Wildberries platform. It is useful for sellers who need to synchronize or adjust their inventory levels programmatically by specifying the warehouse and providing an array of product SKUs with their respective stock amounts.
Typical use cases include:
- Automatically updating stock levels after receiving new inventory.
- Synchronizing stock data between internal systems and Wildberries warehouses.
- Bulk updating multiple product stocks in one request.
Properties
| Name | Meaning |
|---|---|
| Warehouse Id | The numeric identifier of the seller's warehouse where stock levels will be updated. |
| Stocks | A JSON array containing objects with product barcodes (SKU) and their stock quantities. Example: [{"sku": "BarcodeTest123", "amount": 10}] |
Output
The node outputs JSON data representing the response from the Wildberries API after attempting to update the stock levels. This typically includes confirmation of the update status or error details if the operation failed.
No binary data output is produced by this node.
Dependencies
- Requires an API key credential for authenticating requests to the Wildberries API.
- The node depends on the Wildberries API endpoint configured via the bundled OpenAPI specification.
- Proper network access to the Wildberries API service is necessary.
Troubleshooting
- Invalid Warehouse Id: If the warehouse ID does not exist or is incorrect, the API may return an error. Verify the warehouse ID before running the node.
- Malformed Stocks JSON: The
Stocksproperty must be valid JSON. Parsing errors will cause the node to fail. Use proper JSON formatting. - Authentication Errors: Missing or invalid API credentials will prevent successful communication with the Wildberries API.
- API Rate Limits: Frequent updates might hit rate limits imposed by Wildberries. Implement retries or backoff as needed.
- Network Issues: Ensure stable internet connectivity and that the Wildberries API endpoint is reachable.