---
title: "Update team member"
method: PUT
path: "/team-members/{id}"
tags: ["Team Members"]
---

# Update team member

`PUT /team-members/{id}`

Updates role, admin flag, and profile metadata for a team member.

## Path parameters

- `id` string, uuid, required

## Request body

- TeamMemberUpdateRequest
  - `role_name` string
  - `is_admin` boolean
  - `job_title_id` string, uuid, nullable
  - `reports_to_member_id` string, uuid, nullable
  - `access_level` 'MEMBER' | 'ADMIN', nullable

## Response `200`

Team member updated

- ServerResponse
  - `done` boolean, required — Indicates if the operation was successful
  - `body` unknown, required
  - `title` string, nullable — Optional response title
  - `message` string, nullable — Optional message (error message or success notification)

## Other responses

- `403` — CSRF token validation failed

---

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