Actions33
- Lead Actions
- Campaign Actions
- Inbox Actions
- LinkedIn Account Actions
- List Actions
- My Network Actions
- Stat Actions
- Webhook Actions
Overview
The node interacts with the HeyReach API to manage webhooks. Specifically, the "Delete Webhook" operation allows users to remove an existing webhook by specifying its unique identifier. This is useful for cleaning up or disabling webhooks that are no longer needed, preventing unwanted callbacks or notifications from the HeyReach platform.
Practical examples include:
- Automatically deleting a webhook after a campaign ends.
- Removing obsolete webhooks during workflow maintenance.
- Managing webhook lifecycle programmatically within an automation.
Properties
| Name | Meaning |
|---|---|
| Webhook ID | Unique identifier of the webhook to delete. |
Output
The node outputs JSON data representing the result of the delete operation. Typically, this will confirm whether the webhook was successfully deleted or provide error details if the deletion failed.
No binary data output is involved in this operation.
Dependencies
- Requires an API key credential for authenticating with the HeyReach API.
- The node sends requests to the HeyReach API endpoint at
https://api.heyreach.io/api/n8n. - Proper network connectivity and valid credentials are necessary.
Troubleshooting
- Invalid Webhook ID: If the provided webhook ID does not exist or is incorrect, the API may return an error indicating the webhook was not found. Verify the ID before attempting deletion.
- Authentication Errors: Missing or invalid API credentials will cause authentication failures. Ensure the API key is correctly configured in n8n credentials.
- Network Issues: Connectivity problems can prevent the node from reaching the HeyReach API. Check network settings and firewall rules.
- Permission Denied: The API user associated with the credentials might lack permissions to delete webhooks. Confirm appropriate access rights.
Links and References
- HeyReach API Documentation (general reference for API endpoints and authentication)
- n8n Documentation (for configuring credentials and using HTTP Request nodes)