Actions41
- Склады Продавца Actions
- Остатки На Складах Продавца Actions
- Категории Предметы И Характеристики Actions
- Создание Карточек Товаров Actions
- Карточки Товаров Actions
- Медиафайлы Actions
- Ярлыки Actions
- Цены И Скидки Actions
Overview
This node interacts with a product tagging system, specifically allowing users to link tags (labels) to product items identified by their article number ("Nm ID"). It is useful for managing product metadata in bulk or individually by adding or removing tags associated with products. For example, you can add promotional labels, category tags, or remove outdated tags from product cards.
A practical scenario includes updating the tags of a product on an e-commerce platform to reflect current marketing campaigns or inventory status.
Properties
| Name | Meaning |
|---|---|
| Nm ID | The unique article number of the product (numeric). This identifies the product to which tags will be linked or unlinked. |
| Tags I Ds | A JSON array of numeric tag IDs. To remove all tags from a product, pass an empty array. To add tags without removing existing ones, include both new and existing tag IDs in the array. |
Output
The node outputs JSON data representing the result of the tag linking operation. This typically includes confirmation of the updated tags on the product or any error messages returned by the API. There is no indication that binary data is output by this node.
Dependencies
- Requires an API key credential for authentication with the external product/tagging service.
- The node uses a base URL configured from an imported OpenAPI specification.
- The node expects JSON-formatted input for the tags array.
- No additional environment variables are explicitly required beyond standard API authentication.
Troubleshooting
- Common issues:
- Passing invalid or malformed JSON in the "Tags I Ds" property may cause parsing errors.
- Providing a non-existent product ID ("Nm ID") will likely result in an error from the API.
- Omitting required authentication credentials will prevent successful API calls.
- Error messages:
- Errors related to invalid JSON format should be resolved by ensuring the "Tags I Ds" input is valid JSON.
- API errors indicating missing or invalid product or tag IDs require verification of these values before retrying.
- Authentication errors suggest checking the API key or token configuration.
Links and References
- No direct links provided in the source code.
- Users should refer to the external product tagging API documentation for detailed information on tag management and API responses.