Actions33
- Lead Actions
- Campaign Actions
- Inbox Actions
- LinkedIn Account Actions
- List Actions
- My Network Actions
- Stat Actions
- Webhook Actions
Overview
This node interacts with the HeyReach API to retrieve information about a specific webhook by its unique identifier. It is useful when you want to programmatically fetch details of a webhook configured in HeyReach, for example, to verify its settings, monitor its status, or use its data in further automation workflows.
Practical examples include:
- Fetching webhook details before updating or deleting it.
- Retrieving webhook metadata to log or audit webhook configurations.
- Using webhook information as part of a conditional workflow step.
Properties
| Name | Meaning |
|---|---|
| Webhook ID | Unique identifier of the webhook to retrieve |
Output
The node outputs JSON data representing the webhook object retrieved from HeyReach. This typically includes all relevant properties of the webhook such as its ID, URL, events it listens to, status, and other configuration details.
If the webhook has any associated binary data (unlikely for this operation), it would be included in the binary output field, but based on the static code and operation, the output is primarily JSON.
Dependencies
- Requires an API key credential for authenticating with the HeyReach API.
- The base URL for API requests is
https://api.heyreach.io/api/n8n. - Proper network connectivity to reach the HeyReach API endpoint.
Troubleshooting
- Invalid Webhook ID: If the provided webhook ID does not exist or is incorrect, the API will likely return an error indicating the webhook was not found. Verify the ID before running the node.
- Authentication Errors: Missing or invalid API credentials will cause authentication failures. Ensure the API key credential is correctly configured.
- Network Issues: Connectivity problems can prevent the node from reaching the HeyReach API. Check your internet connection and firewall settings.
- API Rate Limits: Excessive requests may trigger rate limiting by HeyReach. Implement retry logic or reduce request frequency if needed.
Links and References
- HeyReach API Documentation (general reference for API endpoints and webhook management)
- n8n documentation on creating custom nodes