Reference
Remy Reference/agent/activeCampaignAddNote
?

activeCampaignAddNote

Add a note to an existing contact in ActiveCampaign.
mindstudio.activeCampaignAddNote({ contactId, note }) → Result

Add a note to an existing contact in ActiveCampaign.

Parameters
contactId
string
RequiredActiveCampaign contact ID to add the note to
note
string
RequiredNote text content
connectionId
string
ActiveCampaign OAuth connection ID
Call from a method
import { mindstudio } from '@mindstudio-ai/agent';

const result = await mindstudio.activeCampaignAddNote({
  contactId: /* ... */,
  note: /* ... */
});