Actions29
- Объявление Actions
- Автозагрузка Actions
- Продвижение Actions
- Рейтинги и Отзывы Actions
Overview
This node integrates with the Avito API, a popular online classifieds platform, to perform various operations related to business data management on Avito. Specifically, for the "Продвижение" (Promotion) resource and the "Получить Детали Ставок" (Get Bid Details) operation, the node retrieves detailed information about bids placed on a specific advertisement.
This functionality is useful for users who want to programmatically monitor or analyze the bidding activity on their Avito ads, such as marketers tracking promotion effectiveness or automated systems adjusting bids based on performance.
Practical example:
A marketing team can use this node to fetch current bid details for an ad campaign on Avito, enabling them to adjust budgets or strategies dynamically based on real-time bid data.
Properties
| Name | Meaning |
|---|---|
| ID Объявления | Unique numeric identifier of the advertisement whose bid details are to be retrieved |
Output
The node outputs JSON data containing the detailed bid information for the specified advertisement ID. Each output item corresponds to one input item and includes the bid details fetched from Avito's API.
If the node encounters an error during execution for a particular item and "Continue On Fail" is enabled, it outputs an error message in the JSON field instead.
No binary data output is indicated by the source code.
Dependencies
- Requires an API authentication token credential for Avito's OAuth2 API.
- The node depends on Avito's external API endpoints to retrieve promotion bid details.
- Proper configuration of the OAuth2 credentials within n8n is necessary for successful API communication.
Troubleshooting
Common issues:
- Invalid or expired API authentication tokens may cause authorization failures.
- Providing an invalid or non-existent advertisement ID will likely result in errors or empty responses.
- Network connectivity problems can prevent successful API calls.
Error messages:
"Unknown resource: ..."— This occurs if an unsupported resource name is provided; ensure the resource parameter is set correctly.- Errors returned from the Avito API (e.g., unauthorized, not found) will be passed through in the JSON output when "Continue On Fail" is enabled.
Resolutions:
- Verify that the API credentials are valid and have not expired.
- Confirm the advertisement ID exists and is correct.
- Check network settings and firewall rules to allow outbound requests to Avito's API.
Links and References
- Avito API Documentation (official API docs, in Russian)
- n8n OAuth2 Credential Setup (general guide on configuring OAuth2 credentials in n8n)