Skip to main content
POST
/
api
/
v3
/
mobile
/
team
/
createTeam
Create a new team
curl --request POST \
  --url https://app.thareja.ai/api/v3/mobile/team/createTeam \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Engineering 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:
name
string
required
The name of the new team. This will be displayed across the application.

Response

id
integer
The unique identifier for the newly created team.
name
string
The name of the team.
created_at
string
The timestamp when the team was created (ISO 8601 format).

Example Request

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
name
string
required

The name of the new team

Example:

"Engineering Team"

Response

New Team response