Overview
This node acts as a trigger for workflows based on events from Didar CRM. It listens for incoming HTTP POST requests at a specified webhook path and starts the workflow when such events occur. This is useful for automating processes that depend on real-time updates or changes in Didar CRM, such as syncing data, sending notifications, or updating other systems.
Use Case Examples
- Trigger a workflow when a new contact is added or updated in Didar CRM.
- Start a workflow to process changes in customer data received from Didar CRM events.
Output
JSON
data- The main event data received from Didar CRM.changes- Details about what has changed in the event.meta- Metadata related to the event.raw- The raw payload received from Didar CRM.receivedAt- Timestamp when the event was received by the webhook.
Dependencies
- Requires an HTTP webhook endpoint to receive POST requests from Didar CRM.
Troubleshooting
- If the webhook receives a non-POST request, it responds with 'Method Not Allowed' (HTTP 405). Ensure Didar CRM is configured to send POST requests.
- If the payload is not valid JSON, the webhook responds with 'Invalid JSON string payload' (HTTP 400). Verify that Didar CRM sends properly formatted JSON data.