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

# Update Organization Team

> Update an existing team in an organization



## OpenAPI

````yaml /openapi.json post /auth/organization/update-team
openapi: 3.1.0
info:
  title: Kaneo API
  version: 1.0.0
  description: Kaneo Project Management API - Manage projects, tasks, labels, and more
servers:
  - url: https://cloud.kaneo.app/api
    description: Kaneo API Server
security:
  - bearerAuth: []
paths:
  /auth/organization/update-team:
    post:
      tags:
        - Organization Management
      summary: Update Organization Team
      description: Update an existing team in an organization
      operationId: updateOrganizationTeam
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                teamId:
                  type: string
                  description: 'The ID of the team to be updated. Eg: "team-id"'
                data:
                  type: object
                  properties:
                    id:
                      type: string
                    name:
                      type: string
                    organizationId:
                      type: string
                    createdAt:
                      type: string
                    updatedAt:
                      type: string
              required:
                - teamId
                - data
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                    description: Unique identifier of the updated team
                  name:
                    type: string
                    description: Updated name of the team
                  organizationId:
                    type: string
                    description: ID of the organization the team belongs to
                  createdAt:
                    type: string
                    description: Timestamp when the team was created
                  updatedAt:
                    type: string
                    description: Timestamp when the team was last updated
                required:
                  - id
                  - name
                  - organizationId
                  - createdAt
                  - updatedAt
        '401':
          description: Missing or invalid credentials
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key or session token (Bearer)

````