list_contact_activities
Retrieve recent activities for a specific contact. Use after fetching a contact to view their latest actions and interactions.
Instructions
๐ข READ-ONLY ยท Activities ยท GET /activities
List a contact's activities
Fetches data. Makes no changes to your ActiveCampaign account.
View your contact's recent activity. The activity is generated when a contact is retrieved via /api/3/contacts/[contactID]. This endpoint should be used after retrieving a contact to obtain the latest data. This is useful for searching for contacts that match certain criteria - such as being part of a certain list, or having a specific custom field value.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| after | No | Filter for activities after a specific DateTime | |
| limit | No | Number of results per page (ActiveCampaign default 20, max 100). | |
| emails | No | FALSE: Excludes email data fields under each activity. No specific connection to emails is mentioned in the JSON data.โ TRUE: Returns deal activities that include email data fields like "connection_email." Each deal activity specifies the addition of email connection information along with timestamps and relevant metadata. | |
| offset | No | Zero-based offset into the result set for pagination. | |
| orders | No | Sort order as an object, e.g. {"email":"ASC"} โ orders[email]=ASC. | |
| contact | No | Required Contact ID | |
| filters | No | Field filters as an object, e.g. {"name":"ecom"} โ filters[name]=ecom. | |
| include | No | Activities to include: notes, notes.user, recipients, recipients.recipient, reference, reference.automation, reference.campaign, reference.campaign.campaignList, reference.campaign.campaignMessage, reference.campaignMessage, reference.contact, reference.contactList, reference.contactList.list, reference.deal, reference.deal.contact, reference.dealTasktype, reference.link, reference.list, reference.log, reference.log.campaign, reference.log.contact, reference.log.message, reference.message, reference.note, reference.sms, reference.sms.automation, user | activities to include |
| orders_tstamp | No | Order activities by tstamp Sent to ActiveCampaign as "orders[tstamp]". |