--- title: "Update User" description: "Updates a user. Only the values provided will be updated." api: "PATCH /users/{user_id}" --- ## Request The user identifier, or `"me"` to reference the currently authenticated user. The request body is required. Only the fields included in the request will be updated. ## Response Successful response containing the updated user information. ```bash cURL curl -X PATCH "https://api.stack-auth.com/users/USER_ID" \ -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \ -H "Content-Type: application/json" \ -d '{"display_name": "Updated Name"}' ```