> ## Documentation Index
> Fetch the complete documentation index at: https://docs.wardin.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Update Team



## OpenAPI

````yaml PATCH /v1/team/teams/{teamId}
openapi: 3.0.0
info:
  title: Wardin API
  description: AI governance & observability platform — external REST API
  version: '1.0'
  contact: {}
servers: []
security: []
tags: []
paths:
  /v1/team/teams/{teamId}:
    patch:
      tags:
        - team
      summary: Rename a team or update its budget pool
      operationId: TeamController_renameTeam
      parameters:
        - name: teamId
          required: true
          in: path
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RenameTeamDto'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TeamDto'
      security:
        - bearer: []
components:
  schemas:
    RenameTeamDto:
      type: object
      properties:
        name:
          type: string
          description: New team name, unique within the tenant
        budgetPoolUsd:
          type: number
          description: Optional budget pool for the team in USD
          nullable: true
      required:
        - name
    TeamDto:
      type: object
      properties:
        id:
          type: string
        tenantId:
          type: string
        name:
          type: string
        budgetPoolUsd:
          type: number
          nullable: true
        createdAt:
          format: date-time
          type: string
        updatedAt:
          format: date-time
          type: string
      required:
        - id
        - tenantId
        - name
        - budgetPoolUsd
        - createdAt
        - updatedAt
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````