---
title: "Update profile"
method: PUT
path: "/profile"
tags: ["Profile"]
---

# Update profile

`PUT /profile`

Update the current user's profile.

## Request body

- object — The user's updated profile information.
  - `name` string, required
  - `email` string, email, required

## Response `200`

Updated user profile information.

- object
  - `data` Profile, required — A Terminal shop user's profile. (We have users, btw.)
    - `user` 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

- `400` — Bad Request
- `401` — Unauthorized
- `429` — Too Many Requests
- `500` — Internal Server Error

## Changes

- **2025-03-19** `1c6726b12e29` — 4 breaking, 24 info
  - the response's body type/format changed from ``/`` to `object`/`` for status `400`
  - the response's body type/format changed from ``/`` to `object`/`` for status `401`
  - the response's body type/format changed from ``/`` to `object`/`` for status `429`
  - the response's body type/format changed from ``/`` to `object`/`` for status `500`
  - …24 more
- **2025-03-07** `979a6c40552c` — 5 breaking, 5 info
  - the request property `email` became not nullable
  - the request property `name` became not nullable
  - the request property `email` became required
  - the request property `name` became required
  - …6 more
- **2024-12-18** `416a8af6f912` — 2 breaking
  - the request property `email` became not nullable
  - the request property `name` became not nullable
- **2024-12-16** `56a8a6f18e6c` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/terminaldotshop/apis/terminal-api/changes/profile/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/84ef614abb97/schema)
