v1

latestOpenAPI 3.0.1Apache 2.02026-07-1398228598.3 KB
Organization

Update Team

Updates an existing team's information. You can modify the team's name and parent team assignment. This operation can be used to restructure the team hierarchy within the organization.

patch/organizations/teams/{teamId}

Path parameters

teamIdstring required

UUID of the team to update

Request body

namestring
parentTeamUUIDstring

Example request

{
  "name": "Marketing",
  "parentTeamUUID": "2ccf9bde-68e3-4de4-bc4e-51b927336665"
}

Response

Team successfully updated

Example response

{
  "data": {
    "name": "Marketing",
    "uuid": "25fd70be-4d15-4b95-9931-69a320ceef76"
  }
}