Overview
This node manages webhooks in the RD Station CRM platform. It allows users to list, retrieve, create, update, and delete webhooks that notify external systems when specific events occur in RD Station CRM, such as deal creation or contact updates.
Common scenarios include:
- Automating workflows by triggering external processes when a deal or contact is created or updated.
- Integrating RD Station CRM with other applications via webhook notifications.
- Managing webhook subscriptions programmatically to keep integrations up to date.
For example, you can use this node to delete a webhook by specifying its ID, which stops further notifications from being sent to the associated callback URL.
Properties
| Name | Meaning |
|---|---|
| ID do Webhook | The unique identifier of the webhook to be retrieved, updated, or deleted (required). |
Output
The node outputs JSON data representing the result of the webhook deletion operation:
- On successful deletion, the output JSON contains:
{ "success": true, "message": "Webhook deletado com sucesso" } - If an error occurs, the output JSON includes an
errorfield with the error message.
No binary data is produced by this operation.
Dependencies
- Requires an API key credential for RD Station CRM to authenticate requests.
- The node makes HTTP requests to the RD Station CRM API endpoint at
https://crm.rdstation.com/api/v1/webhooks. - Proper configuration of the API authentication credential in n8n is necessary.
Troubleshooting
- Missing or invalid webhook ID: The node throws an error if the webhook ID is not provided or invalid when attempting to delete. Ensure the ID is correct and supplied.
- API authentication errors: If the API key credential is missing or incorrect, requests will fail. Verify the credential setup.
- Network or API errors: Connectivity issues or API downtime may cause failures. Check network access and RD Station CRM service status.
- Continue on Fail: If enabled, the node will return error messages in the output JSON instead of stopping execution.
Links and References
- RD Station CRM API Documentation - Webhooks (for detailed API info)
- n8n Documentation - Creating Custom Nodes