Get Note (lawmatics_get-note)
Fetch a single note from Lawmatics by ID, including a `relationships` envelope of {id,type} pointers to the owning record (notable) and the authoring user (createdBy).
Tool Input
noteIdstringrequired— ID of the note to fetch; a numeric string(pattern: ^\d+$)
Tool Output
idstringrequired— Unique ID of the note
titlestringnullrequired— Title/subject of the note; null if unset
bodystringnullrequired— Body content of the note; null if unset
createdAtstringnullrequired— When the note was created, as an ISO 8601 timestamp; null if unknown
updatedAtstringnullrequired— When the note was last updated, as an ISO 8601 timestamp; null if unknown
relationshipsobjectrequired— JSON:API relationship pointers as {id,type} stubs. Not materialized — follow a pointer by calling that resource's own get tool (e.g. type 'prospect' -> get-matter, 'contact' -> get-contact, 'user' -> get-user).
notableobjectnullrequired— Pointer to the record this note is attached to (e.g. type 'prospect', 'contact', 'company'); null when unreported
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 user who authored the note (type 'user'); null when unset or unreported
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