Skip to main content
POST
/
v1
/
teams
Create Team
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: JSON.stringify({teamName: 'Full Stack Developer'})
};

fetch('https://api.trackpilots.com/v1/teams', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "success": true,
  "statusCode": 200,
  "statusMessage": "Fetched all team details successfully",
  "error": null,
  "data": [
    {
      "teamId": "c1e4416e-f57c-4614-886f-35a5541f4316",
      "teamName": "Full Stack Developer",
      "teamHeadCount": "3",
      "teamMembers": "5"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Body

application/json
teamName
string
required
Example:

"Full Stack Developer"

Response

200 - application/json

Team created successfully

success
boolean
Example:

true

statusCode
integer
Example:

200

statusMessage
string
Example:

"Fetched all team details successfully"

error
unknown
data
object[]