Keitaro icon

Keitaro

Работа с API Keitaro

Overview

This node interacts with the Keitaro API to manage various resources such as campaigns, streams, landings, offers, users, and settings. Specifically for the "Настройки" (Settings) resource with the "Удалить" (Delete) operation, it deletes a specified settings entry by its ID. This node is useful for automating the management of Keitaro resources, including creating, updating, retrieving, and deleting settings and other entities. For example, it can be used to programmatically remove obsolete or incorrect settings from a Keitaro instance.

Use Case Examples

  1. Deleting a specific settings entry by providing its ID to keep the Keitaro environment clean and up-to-date.
  2. Automating the removal of settings as part of a workflow that manages campaign configurations.

Properties

Name Meaning
ID Настроек The unique identifier of the settings entry to be deleted. This is required for the delete operation on the settings resource.

Output

JSON

  • request
    • url - The URL of the API request made to Keitaro.
    • method - The HTTP method used for the API request.
  • resource - The resource type involved in the operation, e.g., 'settings'.
  • operation - The operation performed, e.g., 'delete'.
  • success - Indicates if the operation was successful (true/false).
  • data - The data returned from the Keitaro API after the delete operation, typically confirmation or details of the deleted settings.

Dependencies

  • Requires an API key credential for Keitaro API access and the domain URL of the Keitaro instance.

Troubleshooting

  • Ensure the 'ID Настроек' (settingsId) is provided and valid; missing or incorrect ID will cause errors.
  • Verify that the API key and domain are correctly set in the credentials; missing credentials will prevent API access.
  • Check that the operation 'Удалить' (delete) is supported for the 'Настройки' (settings) resource; unsupported operations will throw errors.
  • API errors will include messages from Keitaro, such as invalid ID or permission issues; review the error message for guidance.

Links

  • Keitaro API Documentation - Official documentation for the Keitaro API, useful for understanding available endpoints and operations.

Discussion