create_webhook
Create a webhook to receive real-time notifications for Propstack CRM events like client creation, updates, and property changes. Use HMAC verification for secure payload delivery.
Instructions
Create a webhook to subscribe to Propstack CRM events.
Propstack will POST a JSON payload to target_url whenever the event fires. Use HMAC verification (secret in response) to validate payloads.
Common events:
CLIENT_CREATED — new contact added
CLIENT_UPDATED — contact details changed
PROPERTY_UPDATED — property details or status changed
Use this to set up automation triggers, e.g.: "Notify me when any property status changes" "Alert when a new contact is created"
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| event | Yes | Event name (e.g. 'CLIENT_CREATED', 'CLIENT_UPDATED', 'PROPERTY_UPDATED') | |
| target_url | Yes | URL that Propstack will POST to when the event fires |