Create a team
PUT/companies/:companyID/teams
Create a team
Request
- application/json
Body
required
name stringrequired
description string
Responses
- 200
The created team
- application/json
- Schema
- Example (from schema)
Schema
name stringrequired
The name of the team
description stringnullablerequired
The description of the team
companyId uuidrequired
The ID of the company the team belongs to
created stringrequired
The creation date of the team
updated stringrequired
The last update date of the team
{
"name": "dev-team",
"description": "A team for development",
"companyId": "550e8400-e29b-41d4-a716-446655440000",
"created": "2023-01-01T00:00:00Z",
"updated": "2023-01-02T00:00:00Z"
}
Loading...