{
  "customer_account_name":  "Morf",
  "email":  "john.doe@gmail.com",
  "field_values":  {
    "Age Group":  ">60",
    "Timezone":  "America/Los_Angeles"
  },
  "first_name":  "John",
  "id":  "10",
  "ip":  "1.2.3.4",
  "last_name":  "Doe",
  "organization_name":  "Morf",
  "phone":  "+15551234123",
  "tags":  [
    "tag1",
    "tag2"
  ],
  "updated_at":  "2024-01-01T09:00:00Z"
}
{
  "customer_account_name":  "Customer account name",
  "email":  "Email address",
  "field_values":  "Custom fields' values",
  "first_name":  "First name",
  "id":  "ID",
  "ip":  "IP address",
  "last_name":  "Last name",
  "organization_name":  "Organization name (if plan allows)",
  "phone":  "Phone number",
  "tags":  "Tags",
  "updated_at":  "When a webhook ran for the contact"
}

Events

Triggering Webhook Types

The following event types are associated with the Contact event payload from Active Campaign.

  • Active Campaign Contact Create
  • Active Campaign Contact Update
{
  "customer_account_name":  "Morf",
  "email":  "john.doe@gmail.com",
  "field_values":  {
    "Age Group":  ">60",
    "Timezone":  "America/Los_Angeles"
  },
  "first_name":  "John",
  "id":  "10",
  "ip":  "1.2.3.4",
  "last_name":  "Doe",
  "organization_name":  "Morf",
  "phone":  "+15551234123",
  "tags":  [
    "tag1",
    "tag2"
  ],
  "updated_at":  "2024-01-01T09:00:00Z"
}
{
  "customer_account_name":  "Customer account name",
  "email":  "Email address",
  "field_values":  "Custom fields' values",
  "first_name":  "First name",
  "id":  "ID",
  "ip":  "IP address",
  "last_name":  "Last name",
  "organization_name":  "Organization name (if plan allows)",
  "phone":  "Phone number",
  "tags":  "Tags",
  "updated_at":  "When a webhook ran for the contact"
}

Payload Field Details

Contact
Event Payload
id
string
required

ID ID

CEL
id
Example
"10"
email
string
required

PII Email address

CEL
email
Example
"john.doe@gmail.com"
first_name
string

PII First name

CEL
first_name
Example
"John"
last_name
string

PII Last name

CEL
last_name
Example
"Doe"
phone
string

PII Phone number

CEL
phone
Example
"+15551234123"
tags
[]string
required

HI PII Tags

CEL
tags
Example
[
"tag1",
"tag2"
]
organization_name
string

Organization name (if plan allows)

CEL
organization_name
Example
"Morf"
ip
string

PII IP address

CEL
ip
Example
"1.2.3.4"
field_values
object
required

HI ID PII Custom fields’ values

CEL
field_values
Example
{
"Age Group":  ">60",
"Timezone":  "America/Los_Angeles"
}
updated_at
timing.v1.Timestamp
required

When a webhook ran for the contact

CEL
updated_at
Example
"2024-01-01T09:00:00Z"
customer_account_name
string

Customer account name

CEL
customer_account_name
Example
"Morf"