cURL
curl --request PATCH \ --url https://api.example.com/api/v1/auth/me \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "display_name": "<string>" } '
{ "id": "<string>", "email": "<string>", "created_at": "<string>", "display_name": "<string>" }
Update the authenticated user’s profile (e.g., display name).
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Request body for updating the current user's profile.
New display name (null to clear).
Successful Response
Public profile of the authenticated user.
Unique user identifier.
User email address.
ISO-8601 timestamp of account creation.
User-chosen display name.