> For the complete documentation index, see [llms.txt](https://support.emarketeer.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://support.emarketeer.com/references/apis-developer/send-webhook-from-zapier-to-emarketeer.md).

# Send a webhook from Zapier to eMarketeer

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.

{% stepper %}
{% step %}

### Create a new Zap

1. Log in to Zapier and click "Create Zap".
2. Name the Zap for easy reference.
   {% endstep %}

{% step %}

### Set up the trigger

<div align="left" data-with-frame="true"><img src="/files/8eidoIaTcIex6P7gnEQQ" alt="Zap setup view"></div>

1. Choose a trigger app that holds the contact data you want to send. In this example, a Sleeknote form submission.
2. Select the specific event that triggers the Zap, for example "New Form Submission".
3. Connect your account and test the trigger to confirm the data is being captured.
   {% endstep %}

{% step %}

### Add the webhook action

1. Click "+ Add Action" and select "Webhooks by Zapier" as the action app.
2. Choose "Custom Request" as the action event so you can send a custom API call to eMarketeer.
   {% endstep %}

{% step %}

### Configure the webhook

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.
{% endstep %}

{% step %}

### Test the webhook action

1. Click "Test & Review" to send a test payload to eMarketeer.
2. Check eMarketeer to confirm the contact was created or updated and that the custom signal was recorded.
   {% endstep %}

{% step %}

### Turn on your Zap

1. Once the test passes, click "Turn on Zap" to activate it.
2. The Zap will now send contact data to eMarketeer whenever the trigger fires.
   {% endstep %}
   {% endstepper %}

### Additional information

* **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.

### Recommended use cases

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](https://api-doc.emarketeer.com/?urls.primaryName=Engagement#/Signals/post_signals).


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://support.emarketeer.com/references/apis-developer/send-webhook-from-zapier-to-emarketeer.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
