Konverte Digital icon

Konverte Digital

Interact with Konverte Digital API

Actions115

Overview

This node operation updates an existing webhook for a specified account in the Konverte Digital API. It allows users to modify the webhook's URL and the events (subscriptions) it listens to. This is useful for managing webhook endpoints dynamically, such as changing the destination URL for event notifications or updating the types of events the webhook should receive.

Use Case Examples

  1. Updating a webhook URL when migrating to a new server endpoint.
  2. Changing the subscribed events to receive notifications only for specific event types.

Properties

Name Meaning
Account Id The numeric ID of the account for which the webhook is being updated.
Webhook Id The numeric ID of the webhook to update.
Url The new URL where the webhook events should be sent.
Subscriptions A JSON array specifying the events to subscribe to for this webhook.
Request Options Additional HTTP request options such as batching, SSL certificate validation, proxy settings, and timeout configuration.

Output

JSON

  • id - The unique identifier of the updated webhook.
  • url - The URL of the updated webhook.
  • subscriptions - The list of event subscriptions associated with the webhook.
  • account_id - The account ID to which the webhook belongs.

Dependencies

  • Requires an API key credential for authentication with the Konverte Digital API.

Troubleshooting

  • Ensure the Account Id and Webhook Id are correct and exist in the system to avoid 'not found' errors.
  • Validate the URL format to prevent invalid URL errors.
  • Check JSON format of the subscriptions property to avoid parsing errors.
  • If SSL issues occur, consider enabling 'Ignore SSL Issues' option, but be aware of security risks.
  • Verify proxy settings if used, to ensure network connectivity.
  • Adjust timeout settings if requests are timing out due to slow server responses.

Discussion