Two Minute Reports Logo
Teams

Update team name

Rename a team.
PUT /teams/{teamId}/name

Updates the team's display name. Requires the owner role.

Authentication: Bearer token · Role: owner · Permission:teams:write · Rate limit: default (120 / 60s)

Path parameters

teamId
string · uuid v7 required
The ID of the team to rename.

Request body

name
string required
The new team name. 1–100 characters.
{ "name": "Acme Marketing" }

Request

curl -X PUT https://api.twominutereports.com/v1/teams/0190f8b0-1a2b-7c3d-8e4f-5a6b7c8d9e0f/name \
  -H "Authorization: Bearer tmrc_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" \
  -H "Content-Type: application/json" \
  -d '{ "name": "Acme Marketing" }'

Response

{
  "success": true,
  "data": { "name": "Acme Marketing" }
}
Copyright © 2026