Get Interaction (lawmatics_get-interaction)
Fetch a single interaction from Lawmatics by ID, including its type, description, when it happened, and a `relationships` envelope of {id,type} pointers to the owning record (matter/prospect) and the user who created it.
Tool Input
interactionIdstringrequired— ID of the interaction to retrieve; a numeric string(pattern: ^\d+$)
Tool Output
idstringrequired— Lawmatics interaction ID
interactionTypestringrequired— Kind of interaction (free-form label, e.g. "Phone Call", "Meeting")
bodystringrequired— Text describing the interaction
happenedAtstringrequired— When the interaction occurred, as an ISO 8601 timestamp
createdAtstringrequired— When the interaction record was created, as an ISO 8601 timestamp
updatedAtstringrequired— When the interaction record was last updated, as an ISO 8601 timestamp
relationshipsobjectrequired— JSON:API relationship pointers to related records as {id,type} stubs. Not materialized — follow a pointer by calling that resource's own get/find tool (e.g. type 'prospect' -> get-matter, type 'user' -> get-user).
interactableobjectnullrequired— Pointer to the owning record this interaction is logged on (type 'prospect' is a matter); null when unset
idstringrequired— ID of the referenced Lawmatics record
typestringrequired— JSON:API record class of the reference (e.g. "user", "contact", "prospect", "firm"); resolve it by calling that resource's own get/find tool — this pointer is not materialized
createdByobjectnullrequired— Pointer to the Lawmatics user (type 'user') who created the interaction; null when unattributed
idstringrequired— ID of the referenced Lawmatics record
typestringrequired— JSON:API record class of the reference (e.g. "user", "contact", "prospect", "firm"); resolve it by calling that resource's own get/find tool — this pointer is not materialized
Related Tools