---
title: "Update user"
method: PUT
path: "/user/me"
tags: ["User"]
---

# Update user

`PUT /user/me`

Update the current user.

## Request body

- object — The user's updated information.
  - `name` string, nullable — Name of the user.
  - `email` string, nullable — Email address of the user.

## Response `200`

Updated user information.

- object
  - `data` User, required — A Terminal shop user. (We have users, btw.)
    - `id` string, required — Unique object identifier. The format and length of IDs may change over time.
    - `name` string, nullable, required — Name of the user.
    - `email` string, nullable, required — Email address of the user.
    - `fingerprint` string, nullable, required — The user's fingerprint, derived from their public SSH key.
    - `stripeCustomerID` string, required — Stripe customer ID of the user.

## Other responses

- `404` — User not found.

## Changes

- **2024-12-13** `43ff7af31b1e` — 1 breaking, 1 warning, 3 info
  - removed the required property `result` from the response with the `200` status
  - removed the request property `id`
  - api operation id `putUserMe` was added
  - api tag `User` added
  - …1 more

[Change history](https://skmtc.dev/terminaldotshop/apis/terminal-api/changes/user/me/put.md)

---

[API](https://skmtc.dev/terminaldotshop/apis/terminal-api.md) · [All operations](https://skmtc.dev/terminaldotshop/apis/terminal-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/terminaldotshop/terminal-api/revisions/2d657e4e5d6b/schema)
