v1

latestOpenAPI 3.1.02026-07-261690320.7 KB

Update team

Update an existing team

put/teams/{team_id}

Path parameters

team_idinteger required

Unique ID of the team

Request body

namestring

The new name of the team. If not provided, no changes are made

Example request

{
  "name": "Backend developers",
  "responsibilities": [
    {
      "type": "code_repository",
      "id": 2
    },
    {
      "type": "code_repository",
      "id": 5
    }
  ]
}

Response

The team has been successfully updated

status'ok'

The ID of the newly created team in Aikido.

Example response

{
  "status": "ok"
}