Instagram Post Sync Goes Live 📸🔄
June 3, 2026
Webhooks can capture and export data, such as form submissions or customer interactions, to other software tools or databases. This automatic data transfer enables seamless integration and synchronization across different platforms, enhancing productivity and data management.
Within your account, navigate to the automation or workflow section and select an existing workflow from the list, or create a new workflow.
Determine which events or actions in your CRM should trigger the webhook. Common triggers include form submissions, new contacts, or updates to existing records.
Click the option to add an action to the workflow, then select the Webhook action.Â
Enter a descriptive name for the action to reflect its purpose.
Select either the POST or GET method depending on your needs. The GET method typically retrieves information while the POST method usually sends information to another system to make a change.
Provide the webhook URL of the external application where the data should be sent or received.
Specify the key-value pair for POST methods, for example- Key: Addr, Value: Address (selected from the value picker)
Define the data to be transmitted through the webhook in JSON format if you are using the GET method. Utilize merge fields to dynamically populate information such as contact details, opportunity status, or custom fields. For example: “first_name”: “{{contact.first_name}}”, “last_name”: “{{contact.last_name}}”, “email”: “{{contact.email}}”, “phone”: “{{contact.phone}}”, “status”: “{{contact.status}}”.
If the external system requires authentication or specific headers, you can include them here. For instance, you may need to add an API key or specify the content-type header, such as Authorization: Bearer <API_KEY>; Content-Type: application/json.
Save the action, then save and publish the workflow.Â
Perform a test by triggering the event in your CRM and verifying that the data is correctly received and processed by the third-party application. Adjust configurations as necessary to ensure accurate data transfer.
That’s it! Now you can use webhooks for the seamless transfer and retrieval of data between an external system and your account.
Imagine you have an opt-in page where visitors can sign up for a free trial. You want to automate the creation of accounts for these new sign-ups in an external dashboard. Here’s how you could set up a webhook for this scenario:
Webhook Not Triggering
Data Not Received
Q: Can I use webhooks with any third-party application?