---
title: "Update a team"
method: PUT
path: "/teams/{id}"
tags: ["teams"]
---

# Update a team

`PUT /teams/{id}`

Updates team attributes and manages team owners.

OWNER MANAGEMENT:
- Pass owner_uuids to set the complete list of team owners
- Users in the array become owners, users not in the array are removed as owners
- To add an owner: include all existing owners plus the new one
- To remove an owner: include all owners except the one to remove

## Path parameters

- `id` string, required

## Request body

- object
  - `team` object, required
    - `display_name` string — Team display name
    - `description` string — Team description
    - `parent_uuid` string — Parent team UUID
    - `status` 'active' | 'archived' — Team status (active or archived)
    - `owner_uuids` string[] — Complete list of user UUIDs to be team owners. REPLACES all existing owners - include ALL owners you want to keep.

## Other responses

- `400` — Bad Request - Invalid parameters or malformed request
- `401` — Unauthorized - Invalid or missing authentication
- `403` — Forbidden - User lacks permission to access this resource
- `404` — Not Found - Resource does not exist
- `422` — Unprocessable Entity - Invalid request parameters or validation errors
- `429` — Too Many Requests - Rate limit exceeded
- `500` — Internal Server Error - Unexpected server error

---

[API](https://skmtc.net/rhythms/apis/rhythms-params-in-body.md) · [All operations](https://skmtc.net/rhythms/apis/rhythms-params-in-body/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/rhythms/rhythms-params-in-body/versions/860cca9fe67a/schema)
