> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://apidocs.polytomic.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://apidocs.polytomic.com/_mcp/server.

# Amplemarket

Supports:
* ✅ Models
* ✅ Enrichment
* ✅ Model sync destination
* ✅ Bulk sync source
* ✅ Connection Proxy




## Connection

### Configuration
<table>
<thead>
<tr>
<th>Name</th><th>Type</th><th>Description</th><th>Required</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>api_key</code></td>
<td><code>string</code></td>
<td style="vertical-align: top;">API key</td>
<td><code>true</code></td>
</tr>
<tr>
<td><code>reveal_email_for_person</code></td>
<td><code>boolean</code></td>
<td style="vertical-align: top;">Reveal email address for person enrichment</td>
<td><code>false</code></td>
</tr>
<tr>
<td><code>reveal_phone_number_for_person</code></td>
<td><code>boolean</code></td>
<td style="vertical-align: top;">Reveal phone number for person enrichment</td>
<td><code>false</code></td>
</tr>
</tbody>
</table>


#### Example

```json
{
  "name": "Amplemarket connection",
  "type": "amplemarket",
  "configuration": {
    "api_key": "amp_test_123",
    "reveal_email_for_person": false,
    "reveal_phone_number_for_person": false
  }
}
```

## Model Sync
### Source
#### Configuration
<table>
<thead>
<tr>
<th>Name</th><th>Type</th><th>Description</th><th>Required</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>object</code></td>
<td><code>string</code></td>
<td style="vertical-align: top;">Object</td>
<td><code>true</code></td>
</tr>
</tbody>
</table>


#### Example
```json
{
  ...
  "configuration": {
    "object": "object"
  }
}
```

### Enrichment
#### Configuration
<table>
<thead>
<tr>
<th>Name</th><th>Type</th><th>Description</th><th>Required</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>object</code></td>
<td><code>string</code></td>
<td style="vertical-align: top;">Accepted values: `person`, `company`</td>
<td><code>false</code></td>
</tr>
</tbody>
</table>


#### Example
```json
{
  ...
  "configuration": {
    "object": ""
  }
}
```

### Target
Amplemarket connections may be used as the destination in a model sync.
#### All targets

##### Configuration
<table>
<thead>
<tr>
<th>Name</th><th>Type</th><th>Description</th><th>Required</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>ignore_duplicate_leads_in_other_active_sequences</code></td>
<td><code>boolean</code></td>
<td style="vertical-align: top;">Allow leads in other active sequences</td>
<td><code>false</code></td>
</tr>
<tr>
<td><code>ignore_duplicate_leads_in_other_draft_sequences</code></td>
<td><code>boolean</code></td>
<td style="vertical-align: top;">Allow leads in other draft sequences</td>
<td><code>false</code></td>
</tr>
<tr>
<td><code>ignore_exclusion_list</code></td>
<td><code>boolean</code></td>
<td style="vertical-align: top;">Ignore exclusion list</td>
<td><code>false</code></td>
</tr>
<tr>
<td><code>ignore_recently_contacted</code></td>
<td><code>boolean</code></td>
<td style="vertical-align: top;">Ignore recently contacted check</td>
<td><code>false</code></td>
</tr>
<tr>
<td><code>leads_distribution</code></td>
<td><code>string</code></td>
<td style="vertical-align: top;">Lead distribution<br/><br/>Choose how Amplemarket assigns mailboxes to leads. Accepted values: `sequence_senders`, `custom_mailboxes`</td>
<td><code>true</code></td>
</tr>
<tr>
<td><code>mailboxes</code></td>
<td><code>string</code></td>
<td style="vertical-align: top;">Mailboxes<br/><br/>Comma-separated mailboxes used when lead distribution is custom_mailboxes</td>
<td><code>false</code></td>
</tr>
</tbody>
</table>


##### Example
```json
{
  ...
  "target": {
      "configuration": {
        "ignore_duplicate_leads_in_other_active_sequences": false,
        "ignore_duplicate_leads_in_other_draft_sequences": false,
        "ignore_exclusion_list": false,
        "ignore_recently_contacted": false,
        "leads_distribution": "",
        "mailboxes": "sender1@example.com"
    }
  }
}
```








## Bulk Sync
### Source
Amplemarket connections may be used as a bulk sync source. No additional configuration options are required.