Actions29
- Объявление Actions
- Автозагрузка Actions
- Продвижение Actions
- Рейтинги и Отзывы Actions
Overview
This node integrates with the Avito API, a popular online classifieds platform, to retrieve and manipulate data related to various resources such as items, promotions, ratings, and autoload settings. Specifically, the "Получить Продвижения По ID" (Get Promotions By Item IDs) operation under the "Продвижение" (Promotion) resource allows users to fetch promotion details for multiple advertisement IDs in bulk.
Typical use cases include:
- Fetching promotion status or details for a list of ads to monitor their marketing campaigns.
- Automating reporting workflows by retrieving promotion data for multiple listings at once.
- Integrating Avito promotion data into CRM or analytics platforms for enhanced business insights.
For example, a user can input up to 200 advertisement IDs separated by commas, and the node will return the corresponding promotion information for each.
Properties
| Name | Meaning |
|---|---|
| ID Объявлений | A comma-separated list of advertisement IDs (up to 200) for which to retrieve promotions |
Output
The node outputs an array of JSON objects, each corresponding to one input item. Each JSON object contains the promotion data retrieved from Avito for the specified advertisement IDs.
- The
jsonfield holds the promotion details returned by the API. - If an error occurs for a particular item and "Continue On Fail" is enabled, the output for that item will contain an
errorfield with the error message. - The node does not explicitly output binary data.
Dependencies
- Requires an API key credential for authenticating with the Avito API via OAuth2.
- The node depends on internal routing utilities to handle different operations per resource.
- No additional external dependencies are indicated beyond the Avito API access.
Troubleshooting
Common issues:
- Providing more than 200 IDs in the "ID Объявлений" property may cause the request to fail or be rejected by the API.
- Invalid or expired API credentials will result in authentication errors.
- Network connectivity problems can cause timeouts or failed requests.
Error messages:
"Unknown resource: <resource>": This indicates an unsupported resource was selected; ensure "promotion" is chosen.- API errors returned from Avito will be passed through; check the error message for details.
- If "Continue On Fail" is disabled, any error will stop execution; enabling it allows partial success.
Links and References
- Avito API Documentation (for detailed API usage and limits)
- n8n documentation on OAuth2 Credentials
- General n8n node development guide: https://docs.n8n.io/integrations/creating-nodes/