Overview
The Custom Webhook Action allows you to integrate your with external systems by sending real-time data via HTTP POST, GET, PUT and Delete methods. This action enables seamless automation, data exchange, and interaction with third-party services, APIs, and custom applications without requiring any coding.
Action Name
Custom webhook
Action Description
The Custom Webhook Action enables users to send HTTP requests to specified URLs, integrating with external services for automated data exchange. This action supports multiple HTTP methods (POST, GET, PUT, DELETE), customizable headers, query parameters, and authentication options to match the needs of any third-party service.
Supported Features:
- HTTP Methods: POST, GET, PUT, DELETE
- Custom Headers & Query Parameters: Pass authentication, content-type, or other necessary data
- Authorization Methods:Basic Auth, Bearer token, API key and No auth.
- Basic Auth requires Username and Password
- Bearer token requires Token of the platform
- API key requires a key-value pair of the key name and its value ie the API key.
- Data Mapping: Autocomplete suggestions to map custom values like contact info, lead status, and more
Action Details
Step-by-Step Guide
Choose the Action Type:
- Select "Custom Webhook" from the list of available actions in the workflow builder.
Name Your Action:
- Enter a descriptive name, such as "Send Data to External API."
Enter the Webhook URL:
- Provide the URL of the external system’s endpoint where the data should be sent (e.g., a CRM, payment gateway, or custom API).
Select HTTP Method:
- Choose from POST, GET, PUT, or DELETE depending on the type of data operation required by the external service.
Select Authorization Method (Optional):
- Choose the necessary authorization method such as API keys, Bearer Tokens, or Basic Auth to ensure secure communication with the external service.
Configure Headers & Query Parameters (Optional):
- Add any required headers like
Authorization: Bearer <API_KEY>
or content-type headers to define the data format (Content-Type: application/json
). - Use query parameters to pass additional information, filter data, or adjust the external API’s response.
- Add any required headers like
Map Data:
- Insert relevant data (e.g., contact name, email, phone number) into the request body. You can structure the payload in JSON or another format required by the external system. Example Payload:
Save and Activate the Workflow:
- Once set up, activate the workflow. The webhook will trigger and send data in real time based on the workflow conditions.
Example
Scenario: A business wants to send contact information to an external CRM whenever a new lead is created in your system.
Create Workflow Trigger:
- Set up a workflow trigger for when a new lead is created.
Add Custom Webhook Action:
- Choose "Custom Webhook" and name it "Send Lead Data to CRM."
- Webhook URL:
https://api.externaltestcrm.com/leads/create
- HTTP Method: POST
- Payload
{ "first_name": "{{contact.first_name}}", "last_name": "{{contact.last_name}}", "email": "{{contact.email}}", "phone": "{{contact.phone}}" }
- Headers: Add an API key to authenticate the request
Authorization: Bearer xyz123
Content-Type: application/json
Test the Webhook:
- Test using a tool like Webhook.site or Postman to confirm the data is correctly sent and received.
Save and Activate:
- Once activated, the webhook will automatically send lead data to the CRM whenever a new lead is created.
Outcome: Every new lead is synced with the external CRM, improving automation and reducing manual data entry.
Was this article helpful?
That’s Great!
Thank you for your feedback
Sorry! We couldn't be helpful
Thank you for your feedback
Feedback sent
We appreciate your effort and will try to fix the article