List all contact activities

View a 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.

📘

Contact ID parameter is now required

A contact ID is required to access this endpoint. This endpoint does not support multiple contact IDs with a single call.

🚧

Organization-Related Nodes Have Been Deprecated

Contact-Organization relationships are now managed through Account-Contact end points

{
	contacts: [{
    cdate: "2018-02-13T13:25:54-06:00",
    email: "[email protected]",
    firstName: "Test",
    lastName: "Contact",
    created_timestamp: "2019-11-13 16:18:00",
    updated_timestamp: "2021-04-06 11:25:59",
    id: "4"
  }],
  activityRecipients: [{
    reltype: "Subscriber",
    relid: "4",
    activityid: "865",
    recipient: {
    type: "contact",
    id: "4"
  }],
	activities: [{
    tstamp: "2019-01-03T12:16:19-06:00",
    subscriberid: "4",
    reference_type: "SubscriberEmail",
    reference_id: "13",
    reference_action: "",
    jsonData: null,
    userid: "1",
    permission: "",
    referenceModelName: "contact-email",
    notes: [ ],
    recipients: [
	    "1496"
    ],
    reference: {
    type: "contact-email",
    id: "13"
    },
    user: "1",
    id: "865"
  }],
	meta: {
		total: "1"
	}
}
Language
Authorization
Header
URL