Actions72
- Кампания Actions
- Лендинг Actions
- Оффер Actions
- Клик Actions
- Настройки Actions
- Пользователь Actions
- Блэклист Actions
- Бот Actions
- Постбэк Actions
- Источник Actions
- Конверсия Actions
- Статистика Actions
- Группа Actions
- Поток Actions
- Фильтр Actions
- Лог Actions
- Домен Actions
Overview
This node interacts with the Keitaro API to manage conversion data. Specifically, the 'Обновить' (Update) operation for the 'Конверсия' (Conversion) resource allows users to update existing conversion records by providing the conversion ID and the updated conversion data in JSON format. This is useful for scenarios where conversion details such as click ID, status, revenue, or other attributes need to be modified after initial creation, for example, updating the status of a lead or adjusting revenue values.
Use Case Examples
- Updating a conversion record to change its status from 'lead' to 'sale'.
- Modifying the revenue associated with a specific conversion after a sale is confirmed.
Properties
| Name | Meaning |
|---|---|
| ID Конверсии | The unique identifier of the conversion to update. Required for update operations. |
| Данные Конверсии | The conversion data in JSON format, which must include the 'click_id'. This data is used to update the conversion record. |
Output
JSON
requesturl- The URL of the API request made to Keitaro.method- The HTTP method used for the API request.headers- Headers sent with the API request, with sensitive API keys masked.
resource- The resource type involved in the operation, here 'conversion'.operation- The operation performed, here 'update'.success- Indicates if the update operation was successful.data- The data returned from the Keitaro API after updating the conversion, reflecting the updated conversion details.
Dependencies
- Requires an API key credential for Keitaro API access and the domain URL of the Keitaro instance.
Troubleshooting
- Ensure the 'ID Конверсии' (conversion ID) is provided and valid for update operations; missing or invalid IDs will cause errors.
- The 'Данные Конверсии' (conversion data) must be a valid JSON object and must include the 'click_id' field; otherwise, the API will reject the request.
- API key and domain must be correctly configured in the node credentials; missing or incorrect credentials will prevent successful API calls.
- Check for proper JSON formatting in the conversion data to avoid parsing errors.
- If the API returns an error status, verify the request URL, method, headers, and payload for correctness.
Links
- Keitaro API Documentation - Conversions - Official documentation for managing conversions via the Keitaro API.