Actions32
- Contatos Actions
- Oportunidades Actions
- Tarefas Actions
- Produtos Actions
- Funis Actions
- Campos Personalizados Actions
- Notas Actions
- Anexos Actions
- Propostas Actions
- Webhooks Actions
Overview
This node integrates with the Linqer CRM API to manage webhooks. Specifically, for the Webhooks - Delete operation, it allows users to delete a webhook by specifying its unique ID. This is useful in scenarios where you want to programmatically remove webhook subscriptions that are no longer needed or valid, helping maintain clean and efficient webhook management within your CRM system.
Practical examples include:
- Automatically removing outdated or test webhooks during cleanup workflows.
- Managing webhook lifecycle dynamically based on business logic or external triggers.
Properties
| Name | Meaning |
|---|---|
| ID do Webhook | The unique identifier of the webhook to be deleted. |
Output
The output JSON contains the response from the Linqer CRM API after attempting to delete the specified webhook. Typically, this will confirm whether the deletion was successful or provide error details if it failed.
No binary data output is involved in this operation.
Dependencies
- Requires an API key credential for authenticating requests to the Linqer CRM API.
- The node uses HTTP DELETE requests to the endpoint
/v1/webhooks/{webhookId}on the Linqer CRM API base URL. - Proper configuration of the API URL and authentication credentials in n8n is necessary.
Troubleshooting
Common issues:
- Providing an invalid or non-existent webhook ID will likely result in an error response from the API.
- Missing or incorrect API credentials will cause authentication failures.
- Network connectivity issues can prevent the request from reaching the Linqer CRM API.
Error messages:
- Errors returned by the API typically include messages indicating why the deletion failed (e.g., "Webhook not found").
- Authentication errors will indicate invalid or missing credentials.
Resolutions:
- Verify the webhook ID is correct and exists in the Linqer CRM system.
- Ensure the API key credential is correctly set up and has sufficient permissions.
- Check network connectivity and firewall settings.
Links and References
- Linqer CRM API Documentation (for webhooks): https://docs.linqercrm.com/api/webhooks (Note: link is illustrative; replace with actual if available)
