Actions28
- Кампании Actions
- Создание Кампаний Actions
- Управление Кампаниями Actions
- Финансы Actions
- Параметры Кампаний Actions
- Медиа Actions
- Календарь Акций Actions
Overview
This node interacts with a promotional calendar system to retrieve product nomenclatures related to specific promotions. It is designed to fetch lists of products that are either participating or not participating in a given promotion, supporting pagination through limit and offset parameters.
Common scenarios include:
- Marketing teams wanting to analyze which products are included in a current or past promotion.
- Inventory managers checking the list of items affected by a promotion for stock planning.
- Automated workflows that update other systems based on promotional product data.
For example, you can use this node to get the first 10 products participating in promotion ID 1, then paginate through subsequent products by increasing the offset.
Properties
| Name | Meaning |
|---|---|
| Promotion ID | The unique identifier of the promotion (Акция) to query. |
| In Action | Whether to filter products that are participating (true) or not participating (false) in the promotion. |
| Limit | The number of products to retrieve in one request (pagination size). |
| Offset | The starting position in the list of products from which to begin returning results (pagination offset). |
Output
The node outputs JSON data containing the list of product nomenclatures associated with the specified promotion. Each item in the output corresponds to a product entry filtered by participation status and paginated according to the limit and offset.
If the API supports it, the output may include metadata such as total count or pagination details, but this depends on the external service response.
No binary data output is indicated.
Dependencies
- Requires an API key credential for authentication with the external promotional calendar API.
- The node uses a base URL configured from an imported Swagger/OpenAPI specification.
- Proper network access to the external API endpoint is necessary.
Troubleshooting
- Missing or invalid Promotion ID: Ensure the Promotion ID is provided and valid; otherwise, the API may return errors or empty results.
- Incorrect boolean value for In Action: Use strictly
trueorfalseto filter products correctly. - Pagination issues: If no results appear, verify that the offset and limit values are within the range of available data.
- Authentication failures: Confirm that the API key credential is set up correctly and has sufficient permissions.
- Network errors: Check connectivity to the external API endpoint and any firewall restrictions.
Links and References
- No direct links are embedded in the source code.
- Refer to the external promotional calendar API documentation for detailed parameter descriptions and response formats.