?
activeCampaignCreateContact
Create or sync a contact in ActiveCampaign.
mindstudio.activeCampaignCreateContact({ email, firstName, lastName, phone, accountId, customFields }) → Result
Create or sync a contact in ActiveCampaign.
Parameters
email
string
RequiredContact email address
firstName
string
RequiredContact first name
lastName
string
RequiredContact last name
phone
string
RequiredContact phone number
accountId
string
RequiredActiveCampaign account ID to associate the contact with
customFields
object
RequiredCustom field values keyed by field ID
connectionId
string
ActiveCampaign OAuth connection ID
Call from a method
import { mindstudio } from '@mindstudio-ai/agent'; const result = await mindstudio.activeCampaignCreateContact({ email: /* ... */, firstName: /* ... */, lastName: /* ... */, phone: /* ... */, accountId: /* ... */, customFields: /* ... */ });