---
title: "Update name, email, or password"
method: PATCH
path: "/v1/me"
tags: ["Account"]
---

# Update name, email, or password

`PATCH /v1/me`

Changing the password requires `current_password`.

## Request body

- object
  - `name` string
  - `email` string, email
  - `password` string, password
  - `current_password` string, password

## Response `200`

Account updated.

- object
  - `success` boolean
  - `message` string
  - `data` object
    - `user` User
      - `id` integer
      - `email` string, email
      - `name` string
      - `tier` 'free' | 'starter' | 'pro' | 'enterprise' | 'sandbox'
    - `profile` Profile
      - `company_name` string, nullable
      - `website` string, nullable
      - `description` string, nullable
      - `contact_name` string, nullable
      - `contact_email` string, nullable
      - `contact_phone` string, nullable
      - `address_line1` string, nullable
      - `address_line2` string, nullable
      - `city` string, nullable
      - `region` string, nullable
      - `postal_code` string, nullable
      - `country` string, nullable — ISO 3166-1 alpha-2

## Other responses

- `401` — Missing or invalid API key (`unauthenticated`).
- `422` — Invalid payload (`validation_failed` / `entry_limit_exceeded`).

---

[API](https://skmtc.net/proofdraw/apis/proofdraw-api.md) · [All operations](https://skmtc.net/proofdraw/apis/proofdraw-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/proofdraw/proofdraw-api/revisions/5d4ce7cb355d/schema)
