Actions28
- Кампании Actions
- Создание Кампаний Actions
- Управление Кампаниями Actions
- Финансы Actions
- Параметры Кампаний Actions
- Медиа Actions
- Календарь Акций Actions
Overview
This node is designed to interact with the "Управление Кампаниями" (Campaign Management) resource, specifically to update advertisement bids via the "Patch Adv Bids" operation. It allows users to modify bid values for specific advertisements within campaigns by sending structured JSON data representing the bids to be updated.
Common scenarios where this node is beneficial include:
- Dynamically adjusting bids on advertisements based on performance metrics.
- Automating bid updates in bulk for multiple ads.
- Integrating bid management into larger marketing automation workflows.
For example, a user can provide a JSON array of advertisement IDs and their corresponding new bid values, and the node will send this data to update those bids accordingly.
Properties
| Name | Meaning |
|---|---|
| Bids | A JSON array specifying the bids to update. Each element should contain an advert_id identifying the advertisement and an array nm_bids with objects that specify the bid name (nm) and the new bid value (bid). Example structure: json<br>[<br> {<br> "advert_id": 6348555,<br> "nm_bids": [<br> {<br> "nm": 3462354,<br> "bid": 500<br> }<br> ]<br> }<br>]<br> |
Output
The node outputs JSON data reflecting the response from the API after attempting to patch the advertisement bids. The exact structure depends on the API's response but typically includes confirmation of updated bids or error details if the update failed.
No binary data output is indicated.
Dependencies
- Requires access to the WB API (Wildberries API) or equivalent campaign management API.
- Needs an API authentication token or key configured in n8n credentials to authorize requests.
- The base URL and request headers are set according to the bundled OpenAPI specification.
Troubleshooting
- Invalid JSON in Bids property: If the JSON provided in the Bids field is malformed, the node will fail to parse it. Ensure the JSON syntax is correct.
- Authentication errors: Missing or invalid API credentials will cause authorization failures. Verify that the API key/token is correctly configured.
- API errors: If the API rejects the bid update due to invalid advert IDs or bid values, check the correctness of the IDs and ensure bids are within allowed ranges.
- Network issues: Connectivity problems may prevent the node from reaching the API endpoint. Confirm network access and endpoint availability.
Links and References
- No direct external links are included in the source code.
- For more information, consult the Wildberries API documentation related to campaign and bid management.