Get Timeline Activity (lawmatics_get-timeline-activity)
Fetch a single timeline activity from Lawmatics by ID. Timeline activities are audit-log events on a matter's or contact's history — note creation, status changes, task and email activity — each linking the actor (owner), the tracked record, and the recipient.
Tool Input
activityIdstringrequired— ID of the timeline activity to fetch; a numeric string (e.g. '101')(pattern: ^\d+$)
Tool Output
idstringrequired— Lawmatics timeline activity ID
activityKeystringrequired— Event identifier for the activity (e.g. "note.create", "prospect.update")
activityTypestringrequired— Activity-type class (e.g. "note", "TimelineActivity::Prospect")
detailKeysanyrequired— Activity detail payload; shape varies by activity type — an object with body/name for note events, or an array of objects for others. Null when the activity carries no detail
parentIdstringnullrequired— ID of the parent activity this one is nested under; null when it has no parent
createdAtstringnullrequired— When the activity occurred, as an ISO 8601 timestamp; null when the API omits it for this activity
updatedAtstringnullrequired— When the activity was last updated, as an ISO 8601 timestamp; null when the API omits it for this activity
ownerobjectnullrequired— Who performed the activity (the acting user, firm, or application); null when unattributed
idstringrequired— ID of the referenced Lawmatics record
typestringrequired— Record type of the reference (e.g. "user", "firm", "note", "prospect", "contact")
trackedobjectnullrequired— The record the activity is about (e.g. the note or task that changed); null when none is tracked
idstringrequired— ID of the referenced Lawmatics record
typestringrequired— Record type of the reference (e.g. "user", "firm", "note", "prospect", "contact")
recipientobjectnullrequired— The contact or matter the activity pertains to; null when none applies
idstringrequired— ID of the referenced Lawmatics record
typestringrequired— Record type of the reference (e.g. "user", "firm", "note", "prospect", "contact")
Related Tools