---
title: "Update profile"
method: PUT
path: "/v1/profiles/{profileId}"
tags: ["Profiles"]
---

# Update profile

`PUT /v1/profiles/{profileId}`

Updates a profile's name, description, color, or default status.

## Path parameters

- `profileId` string, required

## Request body

- object
  - `name` string
  - `description` string
  - `color` string
  - `isDefault` boolean

## Response `200`

Updated

- ProfileUpdateResponse
  - `message` string
  - `profile` Profile
    - `_id` string
    - `userId` string
    - `name` string
    - `description` string
    - `color` string
    - `isDefault` boolean
    - `isOverLimit` boolean — Only present when includeOverLimit=true. Indicates if this profile exceeds the plan limit.
    - `createdAt` string, date-time

## Other responses

- `400` — Invalid request
- `401` — Unauthorized
- `404` — Resource not found
- `409` — A profile with this name already exists (code: profile_name_conflict).

---

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