---
title: "Update current user's profile"
method: PATCH
path: "/api/auth/profiles/current"
tags: ["Client"]
---

# Update current user's profile

`PATCH /api/auth/profiles/current`

Update the profile of the currently authenticated user

## Request body

- object
  - `profile` object, required — Profile data (name, avatar_url, and any custom fields)
    - `name` string
    - `avatar_url` string, uri

## Response `200`

Profile updated successfully

- ProfileResponse
  - `id` string, uuid — User ID
  - `profile` object, nullable — User profile data (can contain custom fields)
    - `name` string
    - `avatar_url` string, uri

## Other responses

- `400` — Invalid request
- `401` — Unauthorized - authentication required

---

[API](https://skmtc.net/insforge/apis/insforge-authentication-api.md) · [All operations](https://skmtc.net/insforge/apis/insforge-authentication-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/insforge/insforge-authentication-api/versions/a935bb49f932/schema)
