ActiveCampaign
Contacts

ActiveCampaign Contacts API

Sync contacts data with ActiveCampaign through Apideck's unified API. One integration, instant access.

Supported Operations for ActiveCampaign Contacts

Full CRUD support available through our unified API

list
get
create
update
delete

Supported Fields

12 fields

Fields available for ActiveCampaign Contacts

idnamecompany_idcompany_namefirst_namelast_namephone_numbersemailscustom_fieldsupdated_atcreated_atopportunity_ids

API Model Preview

Sample response structure for contacts

{
  "id": "12345",
  "name": "Example Name",
  "company_id": "12345",
  "company_name": "Example Company Name",
  "first_name": "Example First Name",
  "last_name": "Example Last Name",
  "phone_numbers": [
    {
      "id": "12345",
      "number": "+1-555-123-4567",
      "type": "primary"
    }
  ],
  "emails": [
    {
      "id": "12345",
      "email": "contact@example.com",
      "type": "primary"
    }
  ],
  "custom_fields": [
    {
      "id": "12345",
      "name": "Custom Field",
    
  ...

Quick Start Example

Start syncing ActiveCampaign contacts in minutes

Node.js
import { Apideck } from '@apideck/unify'

const apideck = new Apideck({
  apiKey: process.env.APIDECK_API_KEY,
  appId: 'YOUR_APP_ID',
  consumerId: 'YOUR_CONSUMER_ID'
})

// List contacts from ActiveCampaign
const result = await apideck.crm.contacts.list({
  serviceId: 'activecampaign'
})

for await (const page of result) {
  console.log(page)
}
// Returns unified contacts data

ActiveCampaign SDKs

Build ActiveCampaign integrations in your favorite language with our official SDKs.

Launch accounting integrations in weeks, not months

Sign Up