Get Current User (lawmatics_get-current-user)
Fetch the user authenticated by the current Lawmatics connection (the `/v1/users/me` endpoint), including their name, email, timestamps, and a `relationships` envelope of {id,type} pointers to related records (current firm, inviting user, and all firms the user belongs to). Takes no arguments.
Tool Input
No fields.
Tool Output
idstringrequired— Lawmatics user ID of the authenticated user
namestringrequired— User's full name (combined first and last name)
emailstringrequired— User's email address
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