Keitaro icon

Keitaro

Работа с API Keitaro

Overview

This node interacts with the Keitaro API to perform various operations on different resources, including clicks. Specifically, for the 'click' resource and 'delete' operation, it deletes a click record identified by its ID. This is useful for managing and cleaning up click data in Keitaro campaigns, streams, or other tracking setups.

Use Case Examples

  1. Deleting a click record by its ID to remove invalid or unwanted click data from Keitaro.
  2. Automating cleanup of click logs in Keitaro to maintain accurate campaign analytics.

Properties

Name Meaning
ID Клика The unique identifier of the click to be deleted. Required for operations get, update, and delete on the click resource.

Output

JSON

  • request
    • url - 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 the API key masked.
  • resource - The resource type involved in the operation (e.g., click).
  • operation - The operation performed (e.g., delete).
  • success - Indicates if the operation was successful (true for delete).
  • data - The data returned from the Keitaro API after the operation, typically confirmation of deletion.

Dependencies

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

Troubleshooting

  • Ensure the 'ID Клика' (click ID) is provided and valid for delete operations; missing or invalid IDs will cause errors.
  • Verify that the API key and domain are correctly set in the credentials; missing credentials will prevent API access.
  • Check the API response status code; non-2xx responses indicate errors from the Keitaro API, which may include permission issues or invalid requests.

Discussion