LynceaAPI

Update profile

Only `fullName` is editable here. Email and password live on dedicated flows (separate audit and rate-limit concerns).

PATCH
/api/v1/auth/me
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é"
}