Actions26
- Основные Отчёты Actions
- Отчёт Об Остатках На Складах Actions
- Отчёт О Товарах C Обязательной Маркировкой Actions
- Отчёты Об Удержаниях Actions
- Платная Приёмка Actions
- Платное Хранение Actions
- Продажи По Регионам Actions
- Доля Бренда В Продажах Actions
- Скрытые Товары Actions
- Отчёт О Возвратах И Перемещении Товаров Actions
- Динамика Оборачиваемости Actions
Overview
This node interacts with a reporting API to retrieve supplier stock data as of a specified date and time. It is useful for businesses or inventory managers who need to track product stock changes over time, especially to get updated stock levels from a certain point onward. For example, you can use it to fetch all stock updates since the beginning of a month or after a specific event, enabling accurate inventory reconciliation or supply chain analysis.
Properties
| Name | Meaning |
|---|---|
| Date From | The date and time from which to retrieve stock changes. This parameter filters the results to include only products updated after this timestamp. It accepts dates in RFC3339 format, optionally including time with precision up to seconds or milliseconds. The time zone is Moscow Time (UTC+3). Examples: 2019-06-20, 2019-06-20T23:59:59, 2019-06-20T00:00:00.12345. To get the full stock balance, specify the earliest possible date. |
Output
The node outputs JSON data containing supplier stock information updated since the specified "Date From". The structure typically includes details about each product's stock status, quantities, and timestamps of last changes. No binary data output is indicated.
Dependencies
- Requires an API key credential for authenticating with the external reporting API.
- The node uses a base URL configured from an imported OpenAPI specification.
- Proper network access to the API endpoint is necessary.
Troubleshooting
- Invalid Date Format: If the "Date From" property is not in the correct RFC3339 format or does not respect the required timezone, the API may reject the request or return no data. Ensure the date string matches examples provided.
- Empty Results: Specifying a very recent "Date From" might result in no stock updates being returned if no changes occurred after that time.
- Authentication Errors: Missing or invalid API credentials will cause authentication failures. Verify that the API key is correctly set up in n8n credentials.
- Network Issues: Connectivity problems to the API endpoint will prevent data retrieval. Check firewall and proxy settings.
Links and References
- RFC3339 Date/Time Format
- API documentation section on date/time parameters and limits (referenced in the property description)