Actions41
- Склады Продавца Actions
- Остатки На Складах Продавца Actions
- Категории Предметы И Характеристики Actions
- Создание Карточек Товаров Actions
- Карточки Товаров Actions
- Медиафайлы Actions
- Ярлыки Actions
- Цены И Скидки Actions
Overview
This node interacts with the Wildberries (WB) API to manage product cards. Specifically, the "Post Cards Delete Trash" operation allows users to delete product cards that are in the trash or marked for deletion by providing their article numbers (Артикул WB). This is useful for cleaning up unwanted or obsolete product entries from the system.
Practical examples include:
- Bulk deleting multiple product cards that are no longer needed.
- Automating cleanup of trashed product cards as part of a maintenance workflow.
Properties
| Name | Meaning |
|---|---|
| Nm I Ds | A JSON array of Wildberries article numbers (Артикул WB) to delete. Maximum 1000 items. |
The property expects a JSON array input containing the article numbers of the product cards to be deleted.
Output
The node outputs JSON data representing the response from the WB API after attempting to delete the specified product cards. The exact structure depends on the API response but typically includes success status and any error messages related to the deletion process.
No binary data output is indicated.
Dependencies
- Requires an API key credential for authenticating with the Wildberries API.
- The node uses a base URL configured from an imported OpenAPI specification.
- The request headers specify JSON content type and accept JSON responses.
Troubleshooting
- Common issues:
- Providing more than 1000 article numbers may cause errors or rejection by the API.
- Invalid or malformed JSON input for the article numbers will result in request failures.
- Missing or invalid API authentication token will cause authorization errors.
- Error messages:
- Errors related to exceeding maximum allowed items should be resolved by limiting the input array size.
- Authentication errors require checking and updating the API key credential.
- Malformed JSON errors can be fixed by ensuring the input is valid JSON format.
Links and References
- Wildberries API documentation (for product card management and deletion endpoints)
- n8n documentation on creating and using custom nodes with API integrations