Send a webhook from Zapier to eMarketeer
Set up a Zap that sends contact data to eMarketeer as a custom signal.
Last updated
Was this helpful?
Set up a Zap that sends contact data to eMarketeer as a custom signal.
This is useful when you want to capture form submissions, CRM updates, or other engagement data from any source. The signal will create or update the contact in eMarketeer and record the engagement.

Choose a trigger app that holds the contact data you want to send. In this example, a Sleeknote form submission.
Select the specific event that triggers the Zap, for example "New Form Submission".
Connect your account and test the trigger to confirm the data is being captured.
In the webhook setup dialog, enter:
Method: POST
URL: the Signals API endpoint — https://connect.emarketeer.com/engagements-api/v1/signals
Headers:
Content-Type: application/json
Authorization: Bearer YOUR_API_KEY (replace YOUR_API_KEY with your actual API key)
Payload Type: JSON
In the Data section, enter the data you want to send in JSON. Example template:
{ "adapter": "Sleeknote", "category": "Newsletter signup", "contact": { "firstName": "{{trigger_data_first_name}}", "lastName": "{{trigger_data_last_name}}", "email": "{{trigger_data_email}}", "mobilePhone": "{{trigger_data_phone}}" }, "eventTime": "{{zap_meta_utc_iso}}", "consent": { "marketing": { "allowed": true, "text": "Consents to marketing sendouts" } } }
Replace the placeholder values (e.g. {{trigger_data_first_name}}) with the matching fields from your trigger data.
Adapter: the name of the signal source, such as the tool you're using (Sleeknote, CRM, and so on).
Category: the type of data or action, for example "Newsletter signup" or "Sale closed".
Event Time: use {{zap_meta_utc_iso}} to capture the exact time the event occurred.
Use this setup to send engagement data such as form submissions, contact updates, or CRM activity. For form submissions, the Signals API shown above is the recommended approach.
For more details on the Signals API, see the eMarketeer API documentation.
Last updated
Was this helpful?
Was this helpful?

