Linq icon

Linq

Interact with Linq API

Actions20

Overview

This node integrates with the Linq API to manage webhook subscriptions among other resources. Specifically, for the Webhook Subscription - Delete operation, it allows users to delete an existing webhook subscription by specifying its ID. This is useful when you want to stop receiving events or notifications from a particular webhook subscription that is no longer needed.

Practical examples include:

  • Removing outdated or unused webhook subscriptions to clean up integrations.
  • Revoking access to event notifications for security or organizational changes.
  • Managing webhook lifecycle programmatically within automated workflows.

Properties

Name Meaning
Webhook Subscription ID The unique identifier of the webhook subscription to delete.

Output

The output of this operation is a JSON object representing the response from the Linq API after attempting to delete the webhook subscription. Typically, this will confirm successful deletion or provide error details if the operation failed.

No binary data is output by this node.

Example output JSON structure (simplified):

{
  "success": true,
  "message": "Webhook subscription deleted successfully"
}

or in case of failure, an error message may be included.

Dependencies

  • Requires an active connection to the Linq API using an API authentication token credential.
  • The node uses the Linq API endpoint https://api.linqapp.com/api/partner/v2/webhook_subscriptions/{id} with HTTP DELETE method.
  • The API token must be provided via n8n credentials configuration for the Linq API.

Troubleshooting

  • Rate Limit Exceeded: If the node throws an error indicating rate limit exceeded, wait at least 10 seconds before retrying as the Linq API enforces request limits.
  • Invalid Webhook Subscription ID: Ensure the provided ID exists and is correct; otherwise, the API will return an error.
  • Authentication Errors: Verify that the API token credential is valid and has sufficient permissions to delete webhook subscriptions.
  • Network Issues: Check connectivity to the Linq API endpoint.

Links and References

Discussion