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

# Create Team

> Creates a new team

## Overview

Create a new team in your workspace. Teams help organize projects and members together.

## Request Body

The request body should contain the following fields:

<ParamField body="name" type="string" required>
  The name of the new team. This will be displayed across the application.
</ParamField>

## Response

<ResponseField name="id" type="integer">
  The unique identifier for the newly created team.
</ResponseField>

<ResponseField name="name" type="string">
  The name of the team.
</ResponseField>

<ResponseField name="created_at" type="string">
  The timestamp when the team was created (ISO 8601 format).
</ResponseField>

## Example Request

```bash theme={null}
```


## OpenAPI

````yaml POST /api/v3/mobile/team/createTeam
openapi: 3.1.0
info:
  title: Thareja API Documentation
  description: A comprehensive API for team and task management
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://app.thareja.ai
security:
  - bearerAuth: []
tags:
  - name: Teams
    description: Team management endpoints
  - name: Tasks
    description: Task management endpoints
  - name: Projects
    description: Project management endpoints
  - name: Comments
    description: Comment management endpoints
paths:
  /api/v3/mobile/team/createTeam:
    post:
      tags:
        - Teams
      summary: Create a new team
      description: Creates a new team
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/NewTeam'
        required: true
      responses:
        '200':
          description: New Team response
          content:
            application/json: {}
        '400':
          description: Unexpected error
          content:
            application/json: {}
components:
  schemas:
    NewTeam:
      required:
        - name
      type: object
      properties:
        name:
          description: The name of the new team
          type: string
          example: Engineering Team
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````