Get User (lawmatics_get-user)
Fetch a single user from Lawmatics by ID, including their name, email, role, sign-in count, profile picture URL, and a `relationships` envelope of {id,type} pointers to related records (current firm, inviting user, and all firms the user belongs to).
Tool Input
userIdstringrequired— ID of the user to fetch; a numeric string (e.g. '17')(pattern: ^\d+$)
Tool Output
idstringrequired— Lawmatics user ID
namestringrequired— User's full name (combined first and last name)
emailstringrequired— User's email address
rolestringrequired— User's role in the firm, returned verbatim from Lawmatics (casing varies by endpoint)
signInCountnumbernullrequired— Number of times the user has signed in; null if not reported
profilePicUrlstringnullrequired— Absolute URL of the user's profile picture; null if unset
createdAtstringrequired— When the user was created, as an ISO 8601 timestamp
updatedAtstringrequired— When the user 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 tool (e.g. type 'user' -> get-user).
currentFirmobjectnullrequired— Pointer to the firm this user is currently operating in (type 'firm'); 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
invitedByobjectnullrequired— Pointer to the user who invited this user (type 'user'); null for the founding user or 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
firmsarrayrequired— Pointers to every firm this user belongs to (type 'firm'); empty if none
[]object
2 fields
idstringrequired— ID of the referenced Lawmatics record
typestringrequired— JSON:API record class of the reference; resolve it by calling that resource's own tool
Related Tools