Webhook
This action sends an HTTP request to an external service.
When to Use
Integration with external systems
Sending data to CRM, ERP, other services
Triggering external automations
Retrieving data from APIs
Configuration
Select action Webhook
Enter endpoint URL
Select method (GET, POST, PUT, DELETE)
Configure headers (optional)
Configure request body (for POST, PUT)
Click Save
Parameters
URL
API endpoint address
Method
HTTP method (GET, POST, PUT, DELETE)
Headers
HTTP headers (Authorization, Content-Type, etc.)
Body Type
Data format (JSON, Form Data)
Body
Data to send
Response Handling
What to do with server response
Example: Sending to Google Sheets
URL:
Method: POST
Headers:
Body (JSON):
Variables
You can use variables in URL, headers, and body:
{{contact.name}}
Contact name
{{contact.phone}}
Phone
{{contact.email}}
{{deal.id}}
Deal ID
{{last_message}}
Last message
Response Handling
Ignore — don't process response
Save to field — save response to deal/contact field
Send to customer — send response as message
Security
Use HTTPS for secure data transmission
Add authorization in headers (API keys, Bearer tokens)
Don't transmit sensitive data unnecessarily
Last updated
Was this helpful?