Team retrieval
GET/companies/:companyID/teams/:teamName
Team retrieval
Request
Path Parameters
teamName stringrequired
Responses
- 200
Retrieve a team information
- 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...