> 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
NameTypeDescriptionRequired
api_key string API key true
reveal_email_for_person boolean Reveal email address for person enrichment false
reveal_phone_number_for_person boolean Reveal phone number for person enrichment false
#### 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
NameTypeDescriptionRequired
object string Object true
#### Example ```json { ... "configuration": { "object": "object" } } ``` ### Enrichment #### Configuration
NameTypeDescriptionRequired
object string Accepted values: `person`, `company` false
#### Example ```json { ... "configuration": { "object": "" } } ``` ### Target Amplemarket connections may be used as the destination in a model sync. #### All targets ##### Configuration
NameTypeDescriptionRequired
ignore_duplicate_leads_in_other_active_sequences boolean Allow leads in other active sequences false
ignore_duplicate_leads_in_other_draft_sequences boolean Allow leads in other draft sequences false
ignore_exclusion_list boolean Ignore exclusion list false
ignore_recently_contacted boolean Ignore recently contacted check false
leads_distribution string Lead distribution

Choose how Amplemarket assigns mailboxes to leads. Accepted values: `sequence_senders`, `custom_mailboxes`
true
mailboxes string Mailboxes

Comma-separated mailboxes used when lead distribution is custom_mailboxes
false
##### 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.