Update profile
Only `fullName` is editable here. Email and password live on dedicated flows (separate audit and rate-limit concerns).
Authorization
bearer AuthorizationBearer <token>
In: header
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
curl -X PATCH "https://api.monitoring.crahe-arthur.com/api/v1/auth/me" \ -H "Content-Type: application/json" \ -d '{ "fullName": "Arthur Crahé" }'{
"id": "018f7b9a-57dd-4748-9e13-6e3e3e5b9eaf",
"email": "admin@acme.example",
"fullName": "Arthur Crahé"
}Get current user
Reads `users` on every call so that an email change is reflected without forcing a session refresh. The handler is intentionally tenant-agnostic — `users` is global per ADR 0008.
List my tenants
Returns the tenants the authenticated user can switch to, including the role held in each tenant.